I'm wondering what type of format this tool (fork of a project that became the django-labeller) outputs, and if this json format is supported for uploading datasets to Roboflow.
An example label file (0001__labels.json) is:
{
"image_filename": "0001.jpg",
"complete": null,
"labels": [
{
"object_id": 1,
"label_type": "box",
"size": {
"y": 62,
"x": 235
},
"label_class": "dog",
"centre": {
"y": 42.5625,
"x": 356.5
}
}
]
}
Is the an easy tool to convert a set of labels in this format to a format that Roboflow can ingest?