mmdetection生成测试集的测试结果并保存在.json

mmdetection生成测试集的测试结果并保存在.json

原代码测试验证时没有输出检测结果的文件,只能自己手动改一个了。

本来想自己写一个后来发现原来有,方法如下:
在mmdet/apis/test.py文件中single_gpu_test()函数末尾处,增加以下两句:
    coco=CocoDataset('data/coco/annotations/instances_val2017.json',pipeline=[]) #验证集路径
    json_results=coco._det2json(results=results)
    # write output
    filepath = 'faster_bbox_results.json' #文件需要手动建立
    if os.path.exists(filepath):
        os.remove(filepath)
        json.dump(json_results, open(filepath, 'w'), indent=4)

版权声明:本文为CSDN博主「bloomerOAO」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/qq_42744739/article/details/121534817

bloomerOAO

我还没有学会写个人说明!

暂无评论

发表评论

相关推荐