COCO

Export Data Labels to the COCO format

COCO - a large-scale object detection, segmentation, and captioning dataset.

All label types supported by HyperLabel can be exported to this format.

COCO Data Format

{
  "images": [
    {
      "info": {
        "year": 2020,
        "version": "1.0",
        "description": "People COCO Dataset",
        "contributor": "HyperLabel",
        "url": "https://www.hyperlabel.com",
        "date_created": "2020/3/28"
      },
      "licenses": {
        "url": "https://creativecommons.org/licenses/by/2.0/",
        "id": 2,
        "name": "Attribution License"
      },
      "images": [],
      "annotations": [],
      "categories": [
        {
          "supercategory": "N/A",
          "id": 1,
          "name": "Person"
        }
      ]
    },
    {
      "info": {
        "year": 2020,
        "version": "1.0",
        "description": "Place COCO Dataset",
        "contributor": "HyperLabel",
        "url": "https://www.hyperlabel.com",
        "date_created": "2020/3/28"
      },
      "licenses": {
        "url": "https://creativecommons.org/licenses/by/2.0/",
        "id": 2,
        "name": "Attribution License"
      },
      "images": [],
      "annotations": [],
      "categories": [
        {
          "supercategory": "N/A",
          "id": 1,
          "name": "PLace"
        }
      ]
    }
  ]
}

Last updated