Update README.md
Browse files
README.md
CHANGED
@@ -61,8 +61,8 @@ annotation{
|
|
61 |
"image_id" : int,
|
62 |
"category_id" : int,
|
63 |
"area" : int,
|
64 |
-
"iscrowd" : int,
|
65 |
-
"bbox" : [x,y,width,height]
|
66 |
-
"segmentation" :
|
67 |
}
|
68 |
```
|
|
|
61 |
"image_id" : int,
|
62 |
"category_id" : int,
|
63 |
"area" : int,
|
64 |
+
"iscrowd" : int, # always 0 as instances represent a single object
|
65 |
+
"bbox" : list[float], # [x,y,width,height]
|
66 |
+
"segmentation" : str, # compressed RLE: {"size", (height, widht), "counts": str}
|
67 |
}
|
68 |
```
|