cguindel / eval_kitti

Tools to evaluate object detection results using the KITTI dataset.
57 stars 23 forks source link

stats_car_detection.txt not found #18

Closed qfwysw closed 3 years ago

qfwysw commented 3 years ago

Thank you for the good source code. I use the code to evaluate the 3d box. Then I used the code "./parser.py exp1" to get AP. The code produce the text file named "stats_car_detection_3d" but the code need the text file named "stats_car_detection". Then should I modify the "detection" to the "detection_3d" in parser.py?

cguindel commented 3 years ago

Hi @qfwysw. You can just use ./parser.py exp1 3d and it should give you the 3D results. Similarly, for the BEV evaluation the command would be: ./parser.py exp1 ground

qfwysw commented 3 years ago

Hi @qfwysw. You can just use ./parser.py exp1 3d and it should give you the 3D results. Similarly, for the BEV evaluation the command would be: ./parser.py exp1 ground

Thanks for your quick reply. It solves my problem.