-
Notifications
You must be signed in to change notification settings - Fork 1
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
LiDAR-to-camera calibration #4
Comments
Hi @richardmarcus, thank you for your interest in our dataset and for your questions! Calibration FilesYes, the calibration files we provide (cam_to_cam, imu_to_lidar, and lidar_to_cam) are the result of the calibration process described in our paper, including the RANSAC-based optimization for lidar-to-camera calibration. Camera Images RectificationYes, the camera images are already rectified. You can directly use the provided projection matrices for your applications. Point ProjectionYou are correct that a point X in the lidar coordinate can be projected to the RGB camera using that equation. The reference camera coordinate system is typically the main front camera (similar to KITTI’s camera 02). |
Hi, thanks for getting back to me. When using the given calibration data like this, I never managed to get a good alignment between camera and LiDAR. Maybe I still did something wrong, but it seemed to me that one of the calibration files is not the correct one or something like that. For my research, I had success with https://github.com/koide3/direct_visual_lidar_calibration for recalibration. |
Hi @richardmarcus, thank you for getting back to me and sharing your experience. The |
Hi, Thank you |
Hi, |
There is no need of the imu and GPS for direct_visual_lidar_calibration? This is my main kitti2bag issue now... Maybe there is close to translate the imu and GPS to oxts kitti syle? |
I don't think you need imu and GPS, the algorithm creates a LiDAR reference from multiple scans via CT-ICP and takes just one camera image. Some things I remember:
|
We conducted a targetless calibration using the aforementioned method. We have updated the arxiv version of our paper (appendix). Additionally, we have included new calibration results and the ROS bag used for the calibration (refer to https://github.com/l1997i/DurLAR?tab=readme-ov-file#get-started). We have also updated the README file to explain and clarify our changes. Hope this will help. |
Hi, thanks for providing this dataset.
I have a question about the calibration files you provide (cam_to_cam, imu_to_lidar and lidar_to_cam).
Is this the result of the calibration process you describe in the paper, including the RANSAC based optimisation for lidar to camera calibration?
And followup questions:
Are the camera images already rectified?
Can, like in KITTI, a point X in lidar coordinate be projected to the rgb_camera as
Y = P_rect_02 * R_rect_?? * (R|T)_lidar_to_cam * X
Is this correct? Which is the reference camera coordinate system?
The text was updated successfully, but these errors were encountered: