Kyle Lee
Results
1
issues of
Kyle Lee
## ISSUE Currently in `export_kitti.py` the following [transformation](https://github.com/lyft/nuscenes-devkit/blob/master/lyft_dataset_sdk/utils/export_kitti.py#L152) is incorrect: ``` lid_to_ego = transform_matrix( cs_record_lid["translation"], Quaternion(cs_record_lid["rotation"]), inverse=False ) ego_to_cam = transform_matrix( cs_record_cam["translation"], Quaternion(cs_record_cam["rotation"]), inverse=True ) velo_to_cam = np.dot(ego_to_cam, lid_to_ego) ```...
bug