アノテーションZIPの中身の確認

アノテーションZIPをダウンロードして、前のステップで作成したアノテーションがどのようなフォーマットで格納されているのか確認しましょう。

アノテーションZIPのダウンロード

アノテーション一覧画面に遷移して、アノテーションZIPをダウンロードしてください。

📘

現在のアノテーションをすぐにアノテーションZIPに反映させたい場合は、モーダルダイアログ上の「現在のデータで手動更新」ボタンを押して、更新処理が完了したらダウンロードしてください。

アノテーションZIPの中身の確認

ダウンロードしたアノテーションZIPの中のsample_task_00/sample_video_00.mp4.jsonを開いてください。以下のような内容が記載されています。

{
    "project_id": "2b189876-64da-46a7-a232-58161c89c95b",
    "annotation_format_version": "1.2.0",
    "task_id": "sample_task_00",
    "task_phase": "annotation",
    "task_phase_stage": 1,
    "task_status": "not_started",
    "input_data_id": "sample_video_00.mp4",
    "input_data_name": "sample_video_00.mp4",
    "details": [
        {
            "label": "entire_video",
            "annotation_id": "7c113d44-d927-4457-a1c5-45ba6e34bbc4",
            "data": {
                "_type": "Classification"
            },
            "attributes": {
                "weather": "fine"
            }
        },
        {
            "label": "traffic_light",
            "annotation_id": "5cd3d1d1-0813-4964-b802-03ae18ed3dc9",
            "data": {
                "begin": 3633,
                "end": 16833,
                "_type": "Range"
            },
            "attributes": {
                "color": "red"
            }
        },
        {
            "label": "traffic_light",
            "annotation_id": "09412dc3-b359-45d9-9987-3bfac8f4e9d6",
            "data": {
                "begin": 16833,
                "end": 24966,
                "_type": "Range"
            },
            "attributes": {
                "color": "green"
            }
        },
        {
            "label": "traffic_light",
            "annotation_id": "9bdda999-1453-4856-ab4a-9ffc9d19ee15",
            "data": {
                "begin": 25000,
                "end": 25033,
                "_type": "Range"
            },
            "attributes": {
                "color": ""
            }
        }
    ],
    "updated_datetime": "2026-05-22T18:39:31.854+09:00"
}

detailsキー配下を確認してください。data._typeRangeのデータが区間アノテーションです。

まとめ

以上で、動画アノテーションのチュートリアルは終了です。このチュートリアルでは、「車載カメラ動画」テンプレートを利用してプロジェクトを作成し、動画アノテーションエディタで区間アノテーション、検査コメントを作成しました。