feat(ouster): add native Ouster lidar driver#440
Open
guthabharadwaj wants to merge 1 commit into
Open
Conversation
Add nebula_ouster package for OS-0/OS-1/OS-2 sensors (any beam count). Decodes Ouster UDP packets natively without ouster-sdk, supporting LEGACY, RNG19 single-return, and RNG19 dual-return profiles, plus IMU output. Includes four sub-packages (common, decoders, hw_interfaces, main ROS wrapper), launch files, example config, README, and updates to the top-level package registration and gitignore.
5 tasks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Adds a new
nebula_ousterpackage providing native support for Ouster OS-0, OS-1, and OS-2 sensors with any beam count (32/64/128). Decodes Ouster UDP packets directly without depending onouster-sdk, supporting LEGACY, RNG19 single-return, and RNG19 dual-return profiles, plus IMU output.PR Type
Related Links
Description
Adds native Ouster LiDAR support to Nebula without depending on
ouster-sdk, keeping the dependency footprint minimal and consistent with how other vendors (Hesai, Velodyne, Robosense) are implemented.Packages added:
nebula_ouster_common— sensor configuration types, packet profile enums, per-beam calibration structuresnebula_ouster_hw_interfaces— UDP socket handling for lidar and IMU packet streamsnebula_ouster_decoders— packet parsing for LEGACY, RNG19 single-return, and RNG19 dual-return profiles; per-beam XYZ lookup table generation; metadata (sensor_info) parsingnebula_ouster— ROS 2 wrapper node, launch files, example YAML config, IMU publisherKey design choices:
ouster-sdkdependency — all packet parsing, projection math, and metadata handling implemented nativelysensor_infoJSON at runtime rather than compile-time constantsAlso updated:
.gitignorefor Ouster-specific build artifactsReview Procedure
colcon build --packages-up-to nebula_ouster --symlink-installros2 launch nebula_ouster ouster_launch_all_hw.xml— verify/pointcloud_rawand/imu/datapublish at expected rates and point cloud renders correctly in RViz2.nebula_ouster/config/Ouster.param.yamlfor an example configuration.Remarks
Pre-Review Checklist for the PR Author
PR Author should check the checkboxes below when creating the PR.
Checklist for the PR Reviewer
Reviewers should check the checkboxes below before approval.
Post-Review Checklist for the PR Author
PR Author should check the checkboxes below before merging.
CI Checks