未验证 提交 0070ef3e 编写于 作者: W wangxinxin08 提交者: GitHub

fix COCODataset while eval without annotations (#2574)

上级 b02375b2
......@@ -79,6 +79,13 @@ class COCODataSet(DetDataset):
im_w, im_h, img_id))
continue
coco_rec = {
'im_file': im_path,
'im_id': np.array([img_id]),
'h': im_h,
'w': im_w,
} if 'image' in self.data_fields else {}
if not self.load_image_only:
ins_anno_ids = coco.getAnnIds(imgIds=[img_id], iscrowd=False)
instances = coco.loadAnns(ins_anno_ids)
......@@ -132,13 +139,6 @@ class COCODataSet(DetDataset):
if has_segmentation and not any(gt_poly):
continue
coco_rec = {
'im_file': im_path,
'im_id': np.array([img_id]),
'h': im_h,
'w': im_w,
} if 'image' in self.data_fields else {}
gt_rec = {
'is_crowd': is_crowd,
'gt_class': gt_class,
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册