先占个地方,有空再写 ` import os Dir = './coco_class_6/Annotations/val2014' ImageDir = './coco_class_6/images/val2014' cnt = 0 for i, file_name in enumerate(os.listdir(Dir)): fsize = os.path.getsize(os.path.join(Dir,file_name)) if fsize == 410: print('removing…
一.简介 官方网站:http://cocodataset.org/全称:Microsoft Common Objects in Context (MS COCO)支持任务:Detection.Keypoints.Stuff.Panoptic.Captions说明:COCO数据集目前有三个版本,即2014.2015和2017,其中2015版只有测试集,其他两个有训练集.验证集和测试集.(本贴内容来源于官网+个人理解与描述) 二.数据集下载 方法一:直接官网下载(需要FQ).方法二:本人已把官网数据…