TRI-ML / dd3d

Official PyTorch implementation of DD3D: Is Pseudo-Lidar needed for Monocular 3D Object detection? (ICCV 2021), Dennis Park*, Rares Ambrus*, Vitor Guizilini, Jie Li, and Adrien Gaidon.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Box pose transfomation from camera 2 to velodyne may not be correct.

AlfredQin opened this issue · comments

Hi, I found code at

box_pose = pose_0S * pose_02.inverse() * box_pose
may not be correct.
If we want to get the box pose in the velodyne frame, I think the code may be box_pose = pose_0V.inverse() * pose_02 * box_pose.
I am not sure if it is correct, so I hope you can double check, thank you!