Verify RealSense depth data is publishing (ROS2 CLI)

How to confirm depth topic is publishing using ros2 topic echo.

Open a terminal on the robot (or inside the dev container) and echo the depth topic:

ros2 topic echo /front_camera/aligned_depth_to_color/image_raw --no-arr

If it’s working, you should see a continuous stream of message headers (timestamps, frame IDs) and raw data arrays.

If nothing prints, the camera node is either not running or failing to process depth frames.

Did this answer your question?
😞
😐
🤩