ROS1 (melodic/noetic) | ROS2 (rolling/humble) | ROS2 (foxy)
| ROS Version | Build Status (Linux) |
|---|---|
| ROS1 (melodic/noetic) | |
| ROS2 (rolling/humble) | |
| ROS2 (foxy) |
This ROS package provide support for all Ouster sensors with FW v2.0 or later targeting ros2 distros.
Upon launch the driver will configure and connect to the selected sensor device, once connected the
driver will handle incoming IMU and lidar packets, decode lidar frames and publish corresponding ROS
messages on the topics of /ouster/imu and /ouster/points. In the case the used sensor supports
dual return and it was configured to use this capability, then another topic will published under the
name /ouster/points2 which corresponds to the second point cloud.
This driver only supports Rolling and Humble ROS 2 distros. Please refer to ROS 2 online documentation on how to setup ros on your machine before proceeding with the remainder of this guide.
Note
If you have rosdep tool installed on your system you can then use the following command to get all required dependencies:
rosdep install -y --from-paths $OUSTER_ROS_PATH -r
In addition to the base ROS installation, the following ROS packages are required:
sudo apt install -y \
ros-$ROS_DISTRO-pcl-ros \
ros-$ROS_DISTRO-tf2-eigen \
ros-$ROS_DISTRO-rviz2where $ROS_DISTRO is either rolling or humble.
Note
Installingros-$ROS_DISTRO-rvizpackage is optional in case you didn't need to visualize the point cloud using rviz but remember to always setvizlaunch arg tofalse.
The following packages are also required
sudo apt install -y \
build-essential \
libeigen3-dev \
libjsoncpp-dev \
libspdlog-dev \
libcurl4-openssl-dev \
cmake \
python3-colcon-common-extensionsNote
You may choose a different ssl backend for the curl library such aslibcurl4-gnutls-devorlibcurl4-nss-dev
TBD
TBD
To build the driver using ROS2 you need to clone the project into the src folder of a ros2
workspace as shown below:
mkdir -p ros2_ws/src && cd ros2_ws/src
git clone -b ros2 --recurse-submodules https://github.com/ouster-lidar/ouster-ros.gitNext to compile the driver you need to source the ROS environemt into the active termainl:
source /opt/ros/<ros-distro>/setup.bash # replace ros-distro with 'rolling' or 'humble'Finally, invoke colcon build command from within the catkin workspace as shown below:
cd ros2_ws
colcon build --symlink-install --cmake-args -DCMAKE_BUILD_TYPE=ReleaseNote
SpecifyingReleaseas the build type is important to have a reasonable performance of the driver.
Once the build succeeds, you must source the install folder of your ros2 workspace to add launch commands to your environment:
source ros2_ws/install/setup.bashThe package supports three modes of interaction, you can connect to a live sensor, replay a recorded bag or record a new bag file using the corresponding launch files. Recently, we have added a new mode that supports multicast. The commands are listed below:
ros2 launch ouster_ros sensor.launch.xml \
sensor_hostname:=<sensor host name>Note As of package version 8.1, specifiying metadata file is optional since the introduction of the metadata topic
ros2 launch ouster_ros record.launch.xml \
sensor_hostname:=<sensor host name> \
bag_file:=<optional bag file name> \
metadata:=<json file name> # optionalNote As of package version 8.1, specifiying metadata file is optional if the bag file being replayed already contains the metadata topic
ros2 launch ouster_ros replay.launch.xml \
bag_file:=<path to rosbag file> \
metadata:=<json file name> # optional if bag file has /metadata topicThe multicast launch mode supports configuring the sensor to broadcast lidar packets from the same
sensor (live) to multiple active clients. You initiate this mode by using sensor_mtp.launch.xml
file to start the node. You will need to specify a valid multicast group for the udp_dest
argument which the sensor is going to broadcast data to it. You will also need to set mtp_main
argument to true, this is need to configure the sensor with the specified udp_dest and any
other sensor settings. You can control on which ip (IP4 only) you wish to receive the data on this
machine from the multicast group using the mtp_dest argument as follows:
roslaunch ouster_ros sensor_mtp.launch.xml \
sensor_hostname:=<sensor host name> \
udp_dest:=<multicast group ip (ipv4)> \
mtp_main:=true \
mtp_dest:=<client ip to receive data> # mtp_dest is optionalUsing a different machine that belongs to the same netwok subnet, you can start another instance of the client to start receiving sensor messages through the multicast group as shown below (note that mtp_main is set to false):
roslaunch ouster_ros sensor_mtp.launch.xml \
sensor_hostname:=<sensor host name> \
udp_dest:=<multicast group ip (ipv4)> \
mtp_main:=false \
mtp_dest:=<client ip to receive data> # mtp_dest is optionalNote: In both cases the mtp_dest is optional and if left unset the client will utilize the first available interface.
To execute any of the following service, first you need to open a new terminal
and source the ros2 workspace again by running the command
source ros2_ws/install/setup.bash
To get metadata while connected to a live sensor or during a replay session invoke the following command:
ros2 service call /ouster/get_metadata ouster_srvs/srv/GetMetadataTo get the current config of a live sensor, invoke the command:
ros2 service call /ouster/get_config ouster_srvs/srv/GetConfigTo change config via a file while connected to a live sensor, invoke the command:
ros2 service call /ouster/set_config ouster_srvs/srv/SetConfig \
"{config_file: 'some_config.json'}"To reset the new reset service, execute the following commnad:
ros2 service call /ouster/reset std_srvs/srv/EmptyWhen this service is invoked the client should stop streaming, dispose current connection, reset the sensor and reconnect again.
Note Changing settings is not yet fully support during a reset operation (more on this)
TBD: For further detailed instructions refer to the main guide
