We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi, when reading a KITTI label, it is converted from camera to lidar coordinates with:
https://github.com/poodarchu/Det3D/blob/9fca2d94e4a138b6a2cd5d3fe4f4de38eb760306/det3d/core/bbox/box_np_ops.py#L925-L930
In this code, shouldn't the rotation also be converted from camera to lidar coordinates, for example r_lidar = r_camera @ r_rect @ velo2cam?
r_lidar = r_camera @ r_rect @ velo2cam
Skipping this transform causes a small rotational misalignment of the ground truth. Is this intended?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi, when reading a KITTI label, it is converted from camera to lidar coordinates with:
https://github.com/poodarchu/Det3D/blob/9fca2d94e4a138b6a2cd5d3fe4f4de38eb760306/det3d/core/bbox/box_np_ops.py#L925-L930
In this code, shouldn't the rotation also be converted from camera to lidar coordinates, for example
r_lidar = r_camera @ r_rect @ velo2cam
?Skipping this transform causes a small rotational misalignment of the ground truth.
Is this intended?
The text was updated successfully, but these errors were encountered: