mmdetection测试类别标签不匹配( `cat_ids` be consistent with the order of `CLASSES`)

问题:mmdetection在测试时,会出现可视化标签不匹配的问题。

原因:mmdetection中mmdet默认应用cocoapi/PythonAPI/pycocotools/coco.py/ 获取类别标签,与mmdetection中处理方式不匹配。

解决: 参考Github中Issues中关于该问题的讨论,具体解决见Codecov;

1、修改mmdet/datasets/api_wrappers/coco.py中get_cat_ids函数,使其能够将类别号对应起来;

mmdetection测试类别标签不匹配( `cat_ids` be consistent with the order of `CLASSES`)_第1张图片

 2、如果是较老的mmdet版本,里面没有mmdet/datasets/api_wrappers文件夹,可以自行添加进去文件夹api_wrappers,并将from .api_wrappers import COCO, COCOeval加入mmdet/datasets/coco.py中(同时注释掉默认 cocoapi/PythonAPI/pycocotools/coco.py的import)。

3、修改后并且确保相关class_names与标注名称相一致,本问题可得到解决。

你可能感兴趣的:(mmdetection,机器学习,目标检测,深度学习,python)