-
Notifications
You must be signed in to change notification settings - Fork 83
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 intrinsics are inconsistent with the received pointcloud. Failing integration. #107
Comments
Do you have a short rosbag recording of the LiDAR data? |
Hi, Thanks for the reply. Here is a bag (mcap) containing the ouster cloud and the tf from the odometry. In this case base_link is the actual fixed frame, ouster_1_sensor is the frame of the moving sensor. I hope the link works: https://drive.google.com/file/d/1j8pl06Jko8w4smOG7oAq58NMzTrWdpRU/view?usp=sharing The sensor itself is an Ouster OS1 Gen1. The defined LIDAR intrinsics should be correct according to the datasheet. |
I am having the same issues with an Ouster OS1-128 LiDAR. |
I'm also having the same issue with an ouster lidar. Any suggestions or workarounds? |
For anyone still having this issue I managed to get it working using data from an Ouster OS1 Gen1. The check fails because of 2 reasons:
With those points removed the LIDAR Intrinsics Check works without issues. The problem is, that if one point fails during the LIDAR Intrinsics Check, the node basically stops working. Therefore removing them before that solves the issue. Maybe adding a feature that removes those points could be added to node? For example using a flag to remove points outside the defined FoV? |
Thank you for your detailed explanation. I'm glad that you got this working. Internally, we're focusing on stereo/depth cameras at the moment so we're less likely to see shortcomings in the LiDAR pipeline. If you format the changes above as a pull-request I'm happy to review it and get it in. I would suggest that we take the removal of the bag points into the nvblox_node (rather than a separate node), and put it behind a flag, as you suggest. |
@alexmillane Thanks for the reply, if I have the time I will consider adding the functionality. However, one last thing that I can't quite understand is the dynamic mapping mode using the LiDAR as input. Is this functionality supported? It works with the realsense example without issues but when I try to use only LiDAR data as input for nvblox and set the mapper to dynamic (using mostly the standard config values) I can't get output in terms of dynamic ESDF. The static one is working without issues. The dynamic one gets published but has no data in it. Is there a specific parameter that I am missing for dynamic mapping to work with the LiDAR as input? In the realsense launch files the LiDAR as input get deactivated as soon as the mode is set to dynamic which raises my concern that this functionality isn't supported. Can you give me a quick answer if this should work or not? Here are my current params, but as I said those are mostly the standard values:
My test currently is a simulation of LiDAR where I move the object to see if the ESDF changes at the previous position, but as I said not it seems like the dynamic mapper isn't working or doing anything except publishing empty messages. Here some screnshots where I moved an object inside the simulation |
Hello Everyone,
I am trying to use isaac_ros_nvblox using a pre-recorded ros2 bag. For this matter I wanted to use an ouster OS1 Lidar sensor (Gen 1) with following parameters:
lidar_width: 1024
lidar_height: 64
lidar_vertical_fov_rad: 0.5215044
min_angle_below_zero_elevation_rad: -0.2607522
max_angle_above_zero_elevation_rad: 0.2607522
However, during execution of the node I always get following error in the beginning:
[ERROR] [1718020447.830592432] [nvblox_node]: LiDAR intrinsics are inconsistent with the received pointcloud. Failing integration.
Due to this I get no outputs of the node itself. All the resulting pointclouds (e.g. ESDF) are published but with 0 points in them.
Here is my current configuration for the node:
And an example output of the cloud using ros2 topic echo
Am I missing some specific parameter in order for this to work? I already tried multiple variations of the lidar intrinsics, but the result remains the same.
Thanks in advance for the help.
The text was updated successfully, but these errors were encountered: