<zed sdk v.5.0.0> zedxm crashes in RViz2 after stream timeout and corrupted memory (exit code -6)

Hi,

Please excuse my limited English skills.
I’m using a zedxm camera with ROS 2 Humble on a jetson AGX Orin. (zed sdk version = v.5.0.0 )
I was trying to Rviz visualization.
I command ros2 launch zed_wrapper zed_camera.launch.py camera_model:=zedxm and in other terminal ros2 launch zed_display_rviz2 display_zed_cam.launch.py camera_model:=zedxm sim_mode:=true.
It worked normally but suddenly stopped with the following error message.

[component_container_isolated-2] [Streaming] Error: Stream Opening returned TIMEOUT (350)
[component_container_isolated-2] [Streaming] Metadata timeout. the size is equal to -1 instead of 21960. Skipping.
[component_container_isolated-2] [WARN] [1743422258.814864589] [zed.zed_node]: Error connecting to the simulation server: FAILURE
[component_container_isolated-2] [2025-03-31 11:57:38 UTC][ZED][WARNING] FAILURE in sl::ERROR_CODE sl::Camera ::open(sl::InitParameters)
[component_container_isolated-2] [2025-03-31 11:57:44 UTC][ZED][INFO] Logging level INFO
[component_container_isolated-2] corrupted double-linked list (not small)
[ERROR] [component_container_isolated-2]: process has died [pid 26514, exit code -6, cmd ‘/opt/ros/humble/lib/rclcpp_components/component_container_isolated --use_multi_threaded_executor --ros-args --log-level info --ros-args -r __node:=zed_container -r __ns:=/zed’]

Hi @hannah

What simulation server are you using?

Oh sorry, I don’t use sim_mode.
It seems that sim_mode is not the cause of the problem. Even if I set that value to false, the similar error occurs as above.

[component_container_isolated-2] [2025-04-01 04:31:36 UTC][ZED][INFO] Logging level INFO
[component_container_isolated-2] [2025-04-01 04:31:36 UTC][ZED][ERROR] [ZED] sl::Camera ::Open has not been called, no Camera instance running.
[component_container_isolated-2] [2025-04-01 04:31:36 UTC][ZED][ERROR] [ZED] sl::Camera ::Open has not been called, no Camera instance running.
[component_container_isolated-2] [WARN] [1743481896.702523491] [zed.zed_node]: Error opening camera: CAMERA STREAM FAILED TO START
[component_container_isolated-2] [INFO] [1743481896.702664293] [zed.zed_node]: Please verify the camera connection
[component_container_isolated-2] [ERROR] [1743481896.702712934] [zed.zed_node]: Camera detection timeout
[component_container_isolated-2] [2025-04-01 04:31:36 UTC][ZED][WARNING] CAMERA STREAM FAILED TO START in sl::ERROR_CODE sl::Camera ::open(sl::InitParameters)
[ERROR] [component_container_isolated-2]: process has died [pid 9113, exit code 1, cmd ‘/opt/ros/humble/lib/rclcpp_components/component_container_isolated --use_multi_threaded_executor --ros-args --log-level info --ros-args -r __node:=zed_container -r __ns:=/zed’].

Additionally, there is no problem at all when running ZED_Explorer.

Can you please run ZED_Diagnostic and send the report file it generates?

ZED_Diagnostic_Results.json (22.5 KB)
Here it is. And thank you for your reply.

I’m sorry, but I noticed your error just now.

This is not allowed because the command
ros2 launch zed_display_rviz2 display_zed_cam.launch.py camera_model:=zedxm
will try to start a new ZED Node that is already running in the other terminal for the ZED X Mini camera.

You can directly start the node and the viewer with
ros2 launch zed_display_rviz2 display_zed_cam.launch.py camera_model:=zedxm

Otherwise, you can start the node in one terminal with
ros2 launch zed_wrapper zed_camera.launch.py camera_model:=zedxm
and the rviz2 viewer in another terminal with
ros2 launch zed_display_rviz2 display_zed_cam.launch.py camera_model:=zedxm start_zed_node:=false

I didn’t know this. I thought I had to start the node first and then run RViz. Thank you so much.