autonomousvision / kitti360Scripts

This repository contains utility scripts for the KITTI-360 dataset.
MIT License
365 stars 59 forks source link

Evaluation of Monocular 3D Object Detection #106

Closed skmhrk1209 closed 8 months ago

skmhrk1209 commented 8 months ago

Hello,

In my understanding, KITTI-360's evaluation protocol for 3D object detection is designed for LiDAR-based 3D object detectors that take an accumulated point cloud as an input and are not designed for monocular 3D object detectors. To evaluate monocular 3D object detectors, is it reasonable to merge the predicted bounding boxes from all the frames in the window of each accumulated point cloud, via 3D/BEV NMS and perform the evaluation code? Otherwise, is there a better way? Thank you!

yiyiliao commented 8 months ago

Hi, thank you for your interest in our leaderboard. Yes, the current leaderboard is not designed for monocular 3D object detectors. It is quite reasonable to merge the monocular-based predictions for evaluation on our leaderboard.

skmhrk1209 commented 8 months ago

OK. Thanks!