-
Notifications
You must be signed in to change notification settings - Fork 17
New issue
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
Question about generating KITTI range view images #16
Comments
|
Thanks for your great work. Could you please tell me how to calculate the height and zenith? Can the nuscenes data be converted into range view data format? What should I do for it? |
@HuangDihe The heights and zeniths we used in KITTI are provided by the authors of RCD, which is obtained via Hough Transformation. You need to estimate height and zenith for each beam, which is somewhat similar to line detection with Hough Transformation. I believe you can do it in NuScenes but I cannot provide you the source code. |
@Abyssaledge Thanks for your great work! I run the code : Error: 'lidar_idx' the kitti data organized as follow,and generated .pkl files |
You may encounter error: lidar-idx because you named the storage differently from the author when generating the kitti_infos_trainval.pkl file for the kitti dataset. You can open your pkl file and look up the two memory names in 'point_cloud' to find the one that corresponds to 'lidar-idx', Then change the 'lidar-idx' in the process_single_frame function of create_range_image_in_kitti.py to the corresponding name |
@Abyssaledge What is the version of mmdet3d? The kitti pkl file changed in different version. |
Thanks for your great work. Could you please tell me the meaning of height and incl in the function get_range_image [code] ?
The text was updated successfully, but these errors were encountered: