Project Type: Image Segmentation
OS & Browser: Ubuntu 22, Chrome
Project: Roof Obstructions Object Detection Dataset by Akhil
I’m trying to upload some png images, and a coco annotation file to an existing project with some jpeg images.
The images upload fine, but the annotations do not. The annotations file (annotations.json) looks like the following:
{
"images": [
{
"id": 0,
"width": 1002,
"height": 1001,
"file_name": "mFZD8h.png"
},
...
],
"annotations: [
{
"id": 0,
"image_id": 0,
"category_id": 0,
"bbox": [
339,
555,
14,
12
],
"area": 168,
"segmentation": [
[
342.7118449203307,
555.3099906005905
],
[
339.9534230258326,
562.8026075213653
],
[
350.84645285235854,
566.8128982233492
],
[
353.60487474685664,
559.3202813025745
]
]
},
...
],
"categories": [
{
"id": 0,
"name": "category_1"
},
...
]
}
There are no licences in this json, because I generated it myself. Is there something wrong with my annotations, or have I done something else wrong?