Kajune / AnnotationGUI

A simple yet easy to use annotation tool for Object Detection, Multi Object Tracking, Re-Identification...
GNU General Public License v3.0
5 stars 1 forks source link

Label Specification or Annotation File in Progress #2

Open Peu-m opened 3 years ago

Peu-m commented 3 years ago

@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

Kajune commented 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"
        }
    ]
}