Supervisely JSON
to
Pascal VOC XML
Supervise.ly is a platform for computer vision that offers AI assisted labeling and integration with Jupyter notebooks.
Unfortunately, the platform is quite proprietary (including their JSON-based annotation format). This makes it hard to use your labeled data elsewhere. That's where Roboflow comes in! Export your labels from Supervisely and drop them into Roboflow to seamlessly convert them into any other format and use them with dozens of machine learning models.
{
"description": "",
"tags": [
{
"id": 12345,
"name": "train",
"value": null,
"labelerLogin": "roboflow",
"createdAt": "2000-01-01T00:00:00.000Z",
"updatedAt": "2000-01-01T00:00:00.000Z"
}
],
"size": {
"height": 191,
"width": 264
},
"objects": [
{
"id": 12345,
"classId": 67890,
"description": "",
"geometryType": "polygon",
"labelerLogin": "roboflow",
"createdAt": "2000-01-01T00:00:00.000Z",
"updatedAt": "2000-01-01T00:00:00.000Z",
"tags": [],
"classTitle": "helmet",
"points": {
"exterior": [
[
184,
30
],
[
259,
30
],
[
260,
134
],
[
185,
131
]
],
"interior": []
}
},
{
"id": 12346,
"classId": 67891,
"description": "",
"geometryType": "rectangle",
"labelerLogin": "roboflow",
"createdAt": "2000-01-01T00:00:00.000Z",
"updatedAt": "2000-01-01T00:00:00.000Z",
"tags": [],
"classTitle": "person",
"points": {
"exterior": [
[
63,
49
],
[
124,
62
]
],
"interior": []
}
}
]
}