marcelsheeny / radiate_sdk

SDK developed to access data from RADIATE dataset
MIT License
89 stars 32 forks source link

3D annotations #18

Closed MartinHahner closed 3 years ago

MartinHahner commented 3 years ago

Hi Marcel, thank you for the release of your data!

I am a bit confused regarding the annotations. I only found 2D (BEV in radar space I guess?) annotations in the annotation.json files but on the camera visualizations, you show projected 3D bounding boxes. Are these just the 2D annotations with a fixed height per class or how does one get these "pseudo" 3D bounding boxes?

I am asking because I want to evaluate 3D Object Detection methods on your Velodyne HDL-32e LiDAR data.

Looking forward to your reply.

Greets, Martin

marcelsheeny commented 3 years ago

Hi Martin.

Our dataset only provide 2D BEV bounding boxes. We projected the 2D BEV bounding box to the camera using the estimate heights for each class creating a 3D pseudo bounding box.

The 3D bounding boxes are not really reliable, and since we annotated on the radar images, the different sensor frequencies and the speed of the ego vehicle create distortions on the Lidar annotations.

However If you want to generate the 3D bounding boxes at your own risk, you can see the implementation here on how we did it.

Cheers, Marcel

MartinHahner commented 3 years ago

Thank you for your detailed reply.