【目标检测】coco工具包验证时错误Results do not correspond to current coco set

用CenterNet在自己的制作的数据集上测试mAP,结果报错:Results do not correspond to current coco set

搜了一圈都没有搜到,然后看coco,py代码:

assert set(annsImgIds) == (set(annsImgIds) & set(self.getImgIds())), \
               'Results do not correspond to current coco set'

这个断言的作用是:判断你的json文件内,所有image的id是否和你annotations中出现的图片id有对应

后来发现,我有一些图片里面是空,这张图片上没有annotations,所以id的数量会对不上,只需要把没有注释的图片从json文件中删除就好了~

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章