Hello everyone,
I have followed the official ZED camera setup instructions from NVIDIA’s Isaac ROS documentation:
ZED Setup for Isaac ROS
I’m using Isaac ROS version 3.1 and trying to run Isaac VSLAM based on this guide:
Isaac ROS Visual SLAM
What Works:
- The build process completes without errors for both the ZED wrapper and Isaac VSLAM.
- The ZED Explorer launches, and I can open the cameras successfully.
The Issue:
When running the following launch command for Isaac VSLAM:
ros2 launch isaac_ros_examples isaac_ros_examples.launch.py \
launch_fragments:=zed_stereo_rect,visual_slam \
base_frame:=zed2_camera_center camera_optical_frames:="['zed2_left_camera_optical_frame', 'zed2_right_camera_optical_frame']" \
interface_specs_file:=${ISAAC_ROS_WS}/isaac_ros_assets/isaac_ros_visual_slam/zedx_quickstart_interface_specs.json
I get this error:
[INFO] [launch]: All log files can be found below /home/admin/.ros/log/2025-01-29-13-02-41-371529-GTW-ONX2-ubuntu-13025
[INFO] [launch]: Default logging verbosity is set to INFO
[INFO] [1738155761.518415355] [isaac_ros_examples]: Info: Interface spec "camera_model" is overridden. The value from the overriding file will be used
[INFO] [1738155761.519713525] [isaac_ros_examples]: Info: Interface spec "camera_frame" is overridden. The value from the overriding file will be used
[INFO] [1738155761.520897324] [isaac_ros_examples]: Info: Interface spec "camera_resolution" is overridden. The value from the overriding file will be used
[ERROR] [launch]: Caught exception in launch (see debug for traceback): package 'zed_wrapper' found at '/workspaces/isaac_ros-dev/install/zed_wrapper', but libexec directory '/workspaces/isaac_ros-dev/install/zed_wrapper/lib/zed_wrapper' does not exist
Additional Observations:
- When launching ZED Explorer manually using:
/usr/local/zed/tools/ZED_Explorer
I see the following message in the terminal:
QStandardPaths: XDG_RUNTIME_DIR not set, defaulting to '/tmp/runtime-admin'
** [SVO] Hardware compression (NVENC) available **
[ZED-X][Warning] Failed to connect to zed_x_daemon.
Inside the ZED Explorer interface, I also notice a message indicating:
Disk Free space 0GB on /home/admin/Documents/ZED
I suspect this could be related to either a missing component in the ZED wrapper installation or an issue with the expected directory structure. Any insights on how to resolve this would be appreciated.