Attention
As of June 30, 2025, the Isaac ROS Buildfarm for Isaac ROS 2.1 on Ubuntu 20.04 Focal is no longer supported.
Due to an isolated infrastructure event, all ROS 2 Humble Debian packages that were previously built for Ubuntu 20.04 are no longer available in the Isaac Apt Repository. All artifacts for Isaac ROS 3.0 and later are built and maintained with a more robust pipeline.
Users are encouraged to migrate to the latest version of Isaac ROS. The source code for Isaac ROS 2.1
continues to be available on the release-2.1
branches of the Isaac ROS
GitHub repositories.
The original documentation for Isaac ROS 2.1 is preserved below.
Dynamic Reconstruction with RealSense

This tutorial demonstrates how to perform reconstruction of a scene with moving elements in nvblox using a RealSense camera.
The algorithm used for nvblox dynamic reconstruction is based on the following paper:
For more information about dynamic reconstruction in nvblox see Technical Details.
Note
Dynamic reconstruction requires accurate pose estimation. Objects moving slower than the odometry drift can’t be detected as dynamic.
Example with RealSense Live Data
- Before continuing this example, you must have successfully completed the
Connect the RealSense device to your machine using a USB 3 cable/port.
Run the ROS Docker container using the
run_dev.sh
script:cd ${ISAAC_ROS_WS}/src/isaac_ros_common && \ ./scripts/run_dev.sh
Source the workspace:
source /workspaces/isaac_ros-dev/install/setup.bash
Verify that the RealSense camera is connected by running
realsense-viewer
:realsense-viewer
If successful, run the launch file to spin up the example:
ros2 launch nvblox_examples_bringup realsense_dynamics_example.launch.py
Note
If you want to restrict odometry to a 2D plane
(for example, to run a robot in a flat environment),
you can use the flatten_odometry_to_2d
argument.
Example with RealSense Recorded Data
If you want to run the example on recorded data see RealSense Data Recording for Nvblox.
Troubleshooting
See RealSense Issues.