You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: include/sl/c_api/zed_interface.h
+38-5
Original file line number
Diff line number
Diff line change
@@ -1342,12 +1342,24 @@ extern "C" {
1342
1342
/**
1343
1343
\brief Feed the 3D Object tracking function with your own 2D bounding boxes from your own detection algorithm.
1344
1344
\param camera_id : Id of the camera instance.
1345
+
\param nb_objects : Number of custom objects (size of the object_in array).
1345
1346
\param objects_in : 2D detections from custom detection algorithm.
1347
+
\param instance_id : Id of the Object detection instance. Used when multiple instances of the BT module are enabled at the same time.
1348
+
\note The detection should be done on the current grabbed left image as the internal process will use all current available data to extract 3D informations and perform object tracking.
1349
+
\return \ref SL_ERROR_CODE "SL_ERROR_CODE_SUCCESS" if everything went fine, \ref SL_ERROR_CODE "SL_ERROR_CODE_FAILURE" otherwise.
\brief Feed the 3D Object tracking function with your own 2D bounding boxes with masks from your own detection algorithm.
1355
+
\param camera_id : Id of the camera instance.
1346
1356
\param nb_objects : Number of custom objects (size of the object_in array).
1357
+
\param objects_in : 2D detections from custom detection algorithm.
1358
+
\param instance_id : Id of the Object detection instance. Used when multiple instances of the BT module are enabled at the same time.
1347
1359
\note The detection should be done on the current grabbed left image as the internal process will use all current available data to extract 3D informations and perform object tracking.
1348
1360
\return \ref SL_ERROR_CODE "SL_ERROR_CODE_SUCCESS" if everything went fine, \ref SL_ERROR_CODE "SL_ERROR_CODE_FAILURE" otherwise.
\brief Retrieve objects detected by the custom object detection module.
1376
+
\param camera_id : Id of the camera instance.
1377
+
\param object_detection_runtime_parameters : Custom object detection runtime settings, can be changed at each detection. In async mode, the parameters update is applied on the next iteration.
1378
+
\param objects : The detected objects will be saved into this object. If the object already contains data from a previous detection, it will be updated, keeping a unique ID for the same person.
1379
+
\param instance_id : Id of the object detection instance. Used when multiple instances of the object detection module are enabled at the same time.
1380
+
\return \ref SL_ERROR_CODE "SL_ERROR_CODE_SUCCESS" if everything went fine, \ref SL_ERROR_CODE "SL_ERROR_CODE_FAILURE" otherwise.
\brief Retrieve bodies detected by the body tracking module.
1364
1386
\param camera_id : id of the camera instance.
1365
-
\param bodies : The detected bodies will be saved into this object. If the object already contains data from a previous detection, it will be updated, keeping a unique ID for the same person.
1366
1387
\param body_tracking_runtime_parameters : Body Tracking runtime settings, can be changed at each detection. In async mode, the parameters update is applied on the next iteration.
1388
+
\param bodies : The detected bodies will be saved into this object. If the object already contains data from a previous detection, it will be updated, keeping a unique ID for the same person.
1367
1389
\param instance_id : Id of the object detection instance. Used when multiple instances of the object detection module are enabled at the same time.
1368
1390
\return \ref SL_ERROR_CODE "SL_ERROR_CODE_SUCCESS" if everything went fine, \ref SL_ERROR_CODE "SL_ERROR_CODE_FAILURE" otherwise.
0 commit comments