junxnone / aiwiki

AI Wiki
https://junxnone.github.io/aiwiki
18 stars 2 forks source link

Datasets Image2D COCO #247

Open junxnone opened 5 years ago

junxnone commented 5 years ago

Reference

Brief

Microsoft COCO Datasets

Download

curl https://sdk.cloud.google.com | bash
mkdir train2017
gsutil -m rsync gs://images.cocodataset.org/train2017 train2017
wget http://images.cocodataset.org/annotations/annotations_trainval2017.zip

COCO Challenges Tasks

Tasks Labels
Object Detection image
Stuff Segmentation image
Panoptic Segmentation image
Keypoint Detection image
Captioning image

Annotation format

Detection

annotation{
       "id" : int,
       "image_id" : int,
       "category_id" : int,
       "segmentation" : RLE or [polygon],
       "area" : float,
       "bbox" : [x,y,width,height],
       "iscrowd" : 0 or 1,
}

categories[{
       "id" : int,
       "name" : str, 
       "supercategory" : str,
}]

iscrowd=1 是否是 semantic segmentation

junxnone commented 4 years ago

junxnone/tech-io#30