Instance Segmentation - JSON
- 10 Mar 2025
- Print
- DarkLight
- PDF
Instance Segmentation - JSON
- Updated On 10 Mar 2025
- Print
- DarkLight
- PDF
Article summary
Did you find this summary helpful?
Thank you for your feedback
Overview
This page describes Instance Segmentation Annotation JSON, a data format for describing Instance Segmentation Annotation data in JavaScript Object Notation (JSON).
For more information, see the Instance Segmentation Studio.
This JSON code includes the entity's data related to our software and its metadata.
Instance segmentation annotation JSON
{
"annotations": [
{
"id": "67ceef3bb37fa82ff71ba563",
"datasetId": "67ceef0416595b6856e210e0",
"url": "https://gate.dataloop.ai/api/v1/items/67ceef3bb37fa82ff71ba563",
"dataset": "https://gate.dataloop.ai/api/v1/datasets/67ceef0416595b6856e210e0",
"createdAt": "2025-03-10T13:55:07.498Z",
"dir": "/",
"filename": "/images.png",
"type": "file",
"hidden": false,
"metadata": {
"system": {
"channels": 3,
"encoding": "7bit",
"height": 480,
"isBinary": true,
"mimetype": "image/jpeg",
"originalname": "images.png",
"refs": [],
"size": 24018,
"taskStatusLog": [],
"thumbnailId": "67ceef3f20b914f28531df74",
"width": 640
}
},
"name": "images.png",
"creator": "user@dataloop.ai",
"updatedAt": "2025-03-10T13:55:11.205Z",
"updatedBy": "user@dataloop.ai",
"stream": "https://gate.dataloop.ai/api/v1/items/67ceef3bb37fa82ff71ba563/stream",
"thumbnail": "https://gate.dataloop.ai/api/v1/items/67ceef3bb37fa82ff71ba563/thumbnail",
"annotations": [
{
"id": "67cf1a8415680d49f21d7f8d",
"datasetId": "67ceef0416595b6856e210e0",
"itemId": "67ceef3bb37fa82ff71ba563",
"url": "https://gate.dataloop.ai/api/v1/annotations/67cf1a8415680d49f21d7f8d",
"item": "https://gate.dataloop.ai/api/v1/items/67ceef3bb37fa82ff71ba563",
"dataset": "https://gate.dataloop.ai/api/v1/datasets/67ceef0416595b6856e210e0",
"type": "binary",
"label": "Bird-1",
"attributes": [],
"coordinates": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAoAAAAHgCAYAAAA10dzkAAAAAXNSR0IArs4c6QAAIABJREFUeF7t3e1y3cYRBFD6/R/aKcpmRMmkLj5mFrvbJ38F4GLONLIducr5681/CBAgQIAAAQIEogT+iprWsA...........xIdxAAAAAElFTkSuQmCC",
"metadata": {
"system": {
"attributes": {
"1": "No"
},
"automated": false,
"clientId": "4a3f3b7f-74cd-41d7-98c6-1c4aa17c85a5",
"endFrame": 1,
"endTime": 0,
"frame": 0,
"isOnlyLocal": false,
"isOpen": false,
"itemLinks": [],
"objectId": 1,
"openAnnotationVersion": "1.91.1-prod.3",
"recipeId": "64b4d4652679f454253ffddb",
"snapshots_": [],
"startTime": 0,
"system": false
},
"user": {}
},
"creator": "user@dataloop.ai",
"createdAt": "2025-03-10T16:59:48.199Z",
"updatedBy": "user@dataloop.ai",
"updatedAt": "2025-03-10T16:59:58.278Z",
"hash": "67ceef0416595b6856e210e0_67ceef3bb37fa82ff71ba563_Bird-1_user@dataloop.ai_1",
"source": "ui"
}
],
"annotationsCount": 1,
"annotated": true
}
}
Dictionary table
Key Name | Definition | Parent Key |
---|---|---|
id | Unique identifier for the item | Root |
datasetId | Unique identifier for the dataset | Root |
url | URL of the item in the system | Root |
dataset | URL of the dataset | Root |
createdAt | Timestamp of when the item was created | Root |
dir | Directory path of the item | Root |
filename | Name of the file | Root |
type | Type of the item (e.g., file) | Root |
hidden | Boolean indicating if the item is hidden | Root |
metadata | Metadata information | Root |
metadata.system | System-level metadata | metadata |
metadata.system.channels | Number of color channels in the image | metadata.system |
metadata.system.encoding | Encoding type of the file | metadata.system |
metadata.system.height | Height of the image in pixels | metadata.system |
metadata.system.isBinary | Boolean indicating if the file is binary | metadata.system |
metadata.system.mimetype | MIME type of the image | metadata.system |
metadata.system.originalname | Original file name | metadata.system |
metadata.system.refs | References related to the item | metadata.system |
metadata.system.size | Size of the file in bytes | metadata.system |
metadata.system.taskStatusLog | Log of task statuses | metadata.system |
metadata.system.thumbnailId | Unique identifier for the thumbnail image | metadata.system |
metadata.system.width | Width of the image in pixels | metadata.system |
name | Name of the item | Root |
creator | Creator of the item | Root |
updatedAt | Timestamp of when the item was last updated | Root |
updatedBy | User who last updated the item | Root |
stream | Stream URL of the item | Root |
thumbnail | Thumbnail URL of the item | Root |
annotations | List of annotations | Root |
annotations.id | Unique identifier for the annotation | annotations |
annotations.datasetId | Unique identifier for the dataset related to annotation | annotations |
annotations.itemId | Unique identifier for the item related to annotation | annotations |
annotations.url | URL of the annotation | annotations |
annotations.item | URL of the item related to annotation | annotations |
annotations.dataset | URL of the dataset related to annotation | annotations |
annotations.type | Type of annotation (e.g., binary) | annotations |
annotations.label | Label assigned to the annotation | annotations |
annotations.attributes | Additional attributes of the annotation | annotations |
annotations.coordinates | Encoded segmentation mask data | annotations |