大佬,我现在想用LVIS数据集来跑这个代码
LVIS和COCO的标注类似,但是其annotation中没有'iscrowd'这个字段
而在coco.py的第233行有关于这个字段的处理,请问如何修正?
if annotation['iscrowd']:
Use negative class ID for crowds
class_id *= -1
# For crowd masks, annToMask() sometimes returns a mask
# smaller than the given dimensions. If so, resize it.
if m.shape[0] != image_info["height"] or m.shape[1] != image_info["width"]:
m = np.ones([image_info["height"], image_info["width"]], dtype=bool)
大佬,我现在想用LVIS数据集来跑这个代码 LVIS和COCO的标注类似,但是其annotation中没有'iscrowd'这个字段 而在coco.py的第233行有关于这个字段的处理,请问如何修正? if annotation['iscrowd']:
Use negative class ID for crowds