open-mmlab / mmdetection

OpenMMLab Detection Toolbox and Benchmark
https://mmdetection.readthedocs.io
Apache License 2.0
29.7k stars 9.48k forks source link

Calculate mAP for different scenario ( easy, moderate, hard ) #7119

Open Soodep opened 2 years ago

Soodep commented 2 years ago
easymodhard

How do I display the mAP table for different conditions such as easy, moderate and hard. Currently the mAP is calculated and displayed once for each catagory but I want to display the mAP result based on condition such as easy moderate and hard. I am using KITTI dataset and testing results using Faster RCNN.

ZwwWayne commented 2 years ago

The easy, moderate, hard conditions are not implemented. To do that, you need to implement a new function in dataset.evaluate to separate the boxes of the three conditions.

Soodep commented 2 years ago

I would really appreciate if there is any reference or example that is available for such implementation. Please attach the link if there are any resources that are helpful

shinya7y commented 2 years ago

The official "development kit":

Related files in MMDetection3D:

Petros626 commented 1 month ago

@shinya7y was this comment for the already implemented code or where @Soodep has to change the code?