-
Notifications
You must be signed in to change notification settings - Fork 652
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
What is the focal distance unit of HDL 64e? meter or centimeter? #499
Comments
- Corrected the focal offset coefficient being off by 100x. - Apply hor / vert offset correction at the last step only ros-drivers/velodyne#499
- Corrected the focal offset coefficient being off by 100x. - Fix two-point calibration being applied outside its applicable range. - Apply hor / vert offset correction at the last step only. - Use x and y mean correction for z instead of y. - Fix focal slope factor in HDL-64E calib parsing. ros-drivers/velodyne#499
Hi, I am working with nuScenes dataset which uses a HDL-32E lidar. When considering the intensity calibration, I find it is interesting when compared to the aforementioned HDL-64E lidar: which has channel-specific However, it seems velodyne/velodyne_pointcloud/params/32db.yaml Lines 1 to 5 in 4dc95ac
|
I'm sorry but I don't know enough technical details about the hardware implementation to be able to answer this. It would be helpful if someone could reach out to Velodyne to ask this question and post a response here. |
Hi,
I want to ask what is the focal distance unit of HDL 64e in the HDL 64e XML?
velodyne/velodyne_pointcloud/params/64e_s3-xiesc.yaml
Line 6 in 16be797
Question:
Is the unit of focal distance meter?
I assumed the focal distance has the unit of meter after I read the source code.
The following equation can compensate for the intensity according to the HDL 64e s3 user manual:
velodyne/velodyne_pointcloud/src/lib/rawdata.cc
Lines 488 to 493 in 16be797
But in this case, the focal distance is assumed to have the unit of centimeter and corrections.focal_distance has the unit of meter. Hence, I think it would be
float focal_offset = 256 * (1 - corrections.focal_distance / 131) * (1 - corrections.focal_distance / 131);
, if corrections.focal_distance has the unit of meter.
The text was updated successfully, but these errors were encountered: