AnnoStation
Sign UpAboutTermsPrivacy
日本語
日本語
  • AnnoStation ナレッジベース
  • はじめに
    • AnnoStationとは
    • クイックスタート
  • Mastering AnnoStation
    • Organization
      • メンバーの種類
    • プロジェクトの設定
      • データセットを追加する
        • 画像をインポートする
        • 外部データを使用する
      • データを整理する
      • ラベルを定義する
      • プロジェクトにメンバーを追加する
        • プロジェクトメンバーのロール
      • アノテータをアサインする
    • プロジェクト
      • 対象ファイルを選択する
      • 画像を検索する
      • ソートとフィルタリング
      • レポートパネル
    • ワークフローとステータス管理
    • 画像をアノテーションする
      • アノテーションツール
    • アノテーションをレビューする
    • コラボレーション
      • コメント機能
      • 別のOrganizationとプロジェクトを共有する
        • 共有プロジェクトにおけるメンバーロール
        • 共有プロジェクトにおけるワークフロー
    • データセットのエクスポート
  • Resources
    • JSONフォーマット
      • アノテーション
      • 例
    • キーボードショートカット
    • よくある質問
Powered by GitBook
On this page
  • 1つのセグメンテーションラベルがある例
  • 2つのセグメンテーションラベルがある例
  • 1つのベクターラベルに対して2つ形状がある例
  • 1つのセグメンテーションラベルと1つのベクターラベルがある例

Was this helpful?

  1. Resources
  2. JSONフォーマット

例

1つのセグメンテーションラベルがある例

{
  "filename": "PoC/001.jpg",
  "id": "8051d7cf-ef7f-481e-8ef6-17d77c97fbe4",
  "status": "waiting_for_review",
  "width": 1920,
  "height": 1080,
  "labels": [
    {
      "name": "Dog",
      "type": "segmentation",
      "color": "#ff0000",
      "annotations": [
        {
          "type": "rle",
          "segmentation": [
            [827, 1209, 5],
            [826, 1210, 7],
            [825, 1211, 9]
          ]
        }
      ]
    }
  ]
}

2つのセグメンテーションラベルがある例

{
  "filename": "DCIM001.jpg",
  "id": "8051d7cf-ef7f-481e-8ef6-17d77c97fbe4",
  "status": "in_progress",
  "width": 1920,
  "height": 1080,
  "labels": [
    {
      "name": "Dog",
      "type": "segmentation",
      "color": "#ff0000",
      "annotations": [
        {
          "type": "rle",
          "segmentation": [
            [827, 1209, 5],
            [826, 1210, 7],
            [825, 1211, 9]
          ]
        }
      ]
    },
    {
      "name": "Cat",
      "type": "segmentation",
      "color": "#91FF00",
      "annotations": [
        {
          "type": "rle",
          "segmentation": [
            [846, 1273, 11],
            [846, 1274, 11],
            [847, 1275, 10]
          ]
        }
      ]
    }
  ]
}

1つのベクターラベルに対して2つ形状がある例

{
  "filename": "/POC/RAW/DCIM001.jpg",
  "id": "8051d7cf-ef7f-481e-8ef6-17d77c97fbe4",
  "status": "in_progress",
  "width": 1920,
  "height": 1080,
  "labels": [
    {
      "name": "Car",
      "type": "vector",
      "color": "#ff0000",
      "annotations": [
        {
          "type": "boundingBox",
          "segmentation": [
            2039, 535,
            2649, 535,
            2649, 917,
            2039, 917
          ]
          "attributes": [
            {
              "name": "status"
              "values": ["scratch", "dent", ...]
            }
          ]
        },
        {
          "type": "polygon",
          "segmentation": [85, 48, 74, 85, 15, 59, 73, 17],
          "attributes": [
            {
              "name": "size"
              "values": ["medium"]
            },
            {
              "name": "type"
              "values": ["SUV"]
            }
          ]
        }
      ]
    }
  ]
}

1つのセグメンテーションラベルと1つのベクターラベルがある例

{
  "filename": "DCIM001.jpg",
  "id": "8051d7cf-ef7f-481e-8ef6-17d77c97fbe4",
  "status": "skipped",
  "width": 1920,
  "height": 1080,
  "labels": [
    {
      "name": "Dog",
      "type": "segmentation",
      "color": "#ff0000",
      "annotations": [
        {
          "type": "rle",
          "segmentation": [
            [827, 1209, 5],
            [826, 1210, 7],
            [825, 1211, 9]
          ]
        }
      ]
    },
    {
      "name": "Car",
      "type": "vector",
      "color": "#ff0000",
      "annotations": [
        {
          "type": "boundingBox",
          "segmentation": [
            2039, 535,
            2649, 535,
            2649, 917,
            2039, 917
          ]
          "attributes": [
            {
              "name": "status"
              "values": ["scratch", "dent", ...]
            }
          ]
        },
        {
          "type": "polygon",
          "segmentation": [85, 48, 74, 85, 15, 59, 73, 17],
          "attributes": [
            {
              "name": "size"
              "values": ["medium"]
            },
            {
              "name": "type"
              "values": ["SUV"]
            }
          ]
        }
      ]
    }
  ]
}
PreviousアノテーションNextキーボードショートカット

Last updated 4 years ago

Was this helpful?