rizavelioglu commited on
Commit
f568c95
·
verified ·
1 Parent(s): fa94359

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +3 -3
README.md CHANGED
@@ -61,8 +61,8 @@ annotation{
61
  "image_id" : int,
62
  "category_id" : int,
63
  "area" : int,
64
- "iscrowd" : int, # always 0 as instances represent a single object
65
- "bbox" : [x,y,width,height],
66
- "segmentation" : RLE, # RLE: {"size", (height, widht), "counts": str}
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
  ```