Open Peu-m opened 3 years ago
Label specification file is subset of MS-COCO format, where categories are defined. In addition, attribution definition is also required. Here, I share a simple example of the label specification file.
label.json
{
"categories": [
{
"supercategory": "person",
"id": 1,
"name": "person"
},
{
"supercategory": "person",
"id": 2,
"name": "man"
},
{
"supercategory": "person",
"id": 3,
"name": "woman"
},
{
"supercategory": "vehicle",
"id": 4,
"name": "truck"
},
],
"attributes": [
{
"id": 1,
"name": "difficult"
}
]
}
@Kajune ,
Thanks! for sharing this annotation tool. Annotation GUI in browser is pretty impressive and easy too to analyze a video. However, in the GUI service running in browser we need to select two inputs: (1) video file (2) Label specification.
Not sure as what will be our right label specification file ? Please help.
Best, Peu