Hi there
Attempting to setup two cameras with 360 fusion.
Two ZED2i with jetsons xavier JETSON_L4T=35.4.1 over the network with SDK 5.1.2 running 360 senders.
Receiver running ZED360 on win 11 SDK 5.1.2 CUDA 13.
Sometimes zed360 just crashes when trying to setup the room. Sometimes it does not and adds both cameras in one spot. See attached image. When in calibration it does not show any bodies detected or moving and calibration saves no data.
these are snippets of the code with parameters on the senders:
InitParameters init_parameters;
init_parameters.camera_resolution = sl::RESOLUTION::HD720;
init_parameters.camera_fps = 30;
init_parameters.depth_mode = sl::DEPTH_MODE::NEURAL_LIGHT;
init_parameters.coordinate_system = sl::COORDINATE_SYSTEM::RIGHT_HANDED_Y_UP;
init_parameters.sdk_verbose = 1;
PositionalTrackingParameters positional_tracking_parameters;
positional_tracking_parameters.set_as_static = true;
BodyTrackingParameters body_traking_parameters;
body_traking_parameters.enable_tracking = false;
body_traking_parameters.enable_body_fitting = false;
body_traking_parameters.body_format = sl::BODY_FORMAT::BODY_18;
body_traking_parameters.detection_model = BODY_TRACKING_MODEL::HUMAN_BODY_FAST;
BodyTrackingRuntimeParameters body_tracking_rt;
body_tracking_rt.detection_confidence_threshold = 40;
body_tracking_rt.skeleton_smoothing = 0.7;
CommunicationParameters configuration;
returned_state = zed.startPublishing(configuration);
grab is in the main loop
Both senders are adding receiver:
[RTPSession\] Adding Receiver with IP: 10.30.30.141 ID 187110364
Am I missing any crucial parameters on senders? Also is there a log or a way to see zed360 app log to see what is happening?
Last question does zed360 handle time sync of both jetsons or that has to be done as per your documentation Setting Up Multiple 3D Cameras - Stereolabs is this the missing bit in this chain?
