Skip to content

Commit eedb32b

Browse files
authored
Merge pull request #13 from stereolabs/4.2.0
push to 4.2
2 parents 8a190de + f9a3263 commit eedb32b

8 files changed

+778
-162
lines changed

ReadMe.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ This package lets you use the ZED stereo camera in C .The C API is a wrapper aro
1111

1212
To start using the ZED SDK in C, you will need to install the following dependencies on your system:
1313

14-
- [ZED SDK 4.1.0](https://www.stereolabs.com/developers/release/) and its dependency [CUDA](https://developer.nvidia.com/cuda-downloads)
14+
- [ZED SDK 4.2.0](https://www.stereolabs.com/developers/release/) and its dependency [CUDA](https://developer.nvidia.com/cuda-downloads)
1515

1616
## Installing the C API
1717

include/sl/c_api/types_c.h

+378-10
Large diffs are not rendered by default.

include/sl/c_api/zed_interface.h

+38-5
Original file line numberDiff line numberDiff line change
@@ -1342,12 +1342,24 @@ extern "C" {
13421342
/**
13431343
\brief Feed the 3D Object tracking function with your own 2D bounding boxes from your own detection algorithm.
13441344
\param camera_id : Id of the camera instance.
1345+
\param nb_objects : Number of custom objects (size of the object_in array).
13451346
\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.
1350+
*/
1351+
INTERFACE_API int sl_ingest_custom_box_objects(int camera_id, int nb_objects, struct SL_CustomBoxObjectData* objects_in, unsigned int instance_id);
1352+
1353+
/**
1354+
\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.
13461356
\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.
13471359
\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.
13481360
\return \ref SL_ERROR_CODE "SL_ERROR_CODE_SUCCESS" if everything went fine, \ref SL_ERROR_CODE "SL_ERROR_CODE_FAILURE" otherwise.
13491361
*/
1350-
INTERFACE_API int sl_ingest_custom_box_objects(int camera_id, int nb_objects, struct SL_CustomBoxObjectData* objects_in);
1362+
INTERFACE_API int sl_ingest_custom_mask_objects(int camera_id, int nb_objects, struct SL_CustomMaskObjectData* objects_in, unsigned int instance_id);
13511363

13521364
/**
13531365
\brief Retrieve objects detected by the object detection module.
@@ -1359,17 +1371,26 @@ extern "C" {
13591371
*/
13601372
INTERFACE_API int sl_retrieve_objects(int camera_id, struct SL_ObjectDetectionRuntimeParameters* object_detection_runtime_parameters, struct SL_Objects* objects, unsigned int instance_id);
13611373

1374+
/**
1375+
\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.
1381+
*/
1382+
INTERFACE_API int sl_retrieve_custom_objects(int camera_id, struct SL_CustomObjectDetectionRuntimeParameters* object_detection_runtime_parameters, struct SL_Objects* objects, unsigned int instance_id);
1383+
13621384
/**
13631385
\brief Retrieve bodies detected by the body tracking module.
13641386
\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.
13661387
\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.
13671389
\param instance_id : Id of the object detection instance. Used when multiple instances of the object detection module are enabled at the same time.
13681390
\return \ref SL_ERROR_CODE "SL_ERROR_CODE_SUCCESS" if everything went fine, \ref SL_ERROR_CODE "SL_ERROR_CODE_FAILURE" otherwise.
13691391
*/
13701392
INTERFACE_API int sl_retrieve_bodies(int camera_id, struct SL_BodyTrackingRuntimeParameters* body_tracking_runtime_parameters, struct SL_Bodies* bodies, unsigned int instance_id);
13711393

1372-
13731394
/**
13741395
\brief Updates the internal batch of detected objects.
13751396
\param camera_id : Id of the camera instance.
@@ -1504,7 +1525,19 @@ extern "C" {
15041525
\return a vector of \ref SL_FusionConfiguration for all the camera present in the file.
15051526
\note empty if no data were found for the requested camera.
15061527
*/
1507-
INTERFACE_API void sl_fusion_read_configuration_file(char json_config_filename[256], enum SL_COORDINATE_SYSTEM coord_system, enum SL_UNIT unit, struct SL_FusionConfiguration* configs, int* nb_cameras);
1528+
INTERFACE_API void sl_fusion_read_configuration_file(const char* json_config_filename, enum SL_COORDINATE_SYSTEM coord_system, enum SL_UNIT unit, struct SL_FusionConfiguration configs[MAX_FUSED_CAMERAS], int* nb_cameras);
1529+
1530+
1531+
/**
1532+
\brief Read a Configuration JSON string to configure a fusion process.
1533+
\param fusion_configuration : The string containing the configuration (it will be parsed like a json).
1534+
\param coord_sys : The COORDINATE_SYSTEM in which you want the World Pose to be in.
1535+
\param unit : The UNIT in which you want the World Pose to be in.
1536+
1537+
\return A vector of \ref FusionConfiguration for all the camera present in the file.
1538+
\note Empty if no data were found for the requested camera.
1539+
*/
1540+
INTERFACE_API void sl_fusion_read_configuration(const char* fusion_configuration, enum SL_COORDINATE_SYSTEM coord_system, enum SL_UNIT unit, struct SL_FusionConfiguration configs[MAX_FUSED_CAMERAS], int* nb_cameras);
15081541

15091542
/////////////////////////////////////////////////////////////////////
15101543
///////////////////// Object Detection Fusion ///////////////////////
@@ -1559,7 +1592,7 @@ extern "C" {
15591592
* \param uuid Camera identifier
15601593
* \return POSITIONAL_TRACKING_STATE is the current state of the tracking process
15611594
*/
1562-
INTERFACE_API enum SL_POSITIONAL_TRACKING_STATE sl_fusion_get_position(struct SL_PoseData* pose, enum SL_REFERENCE_FRAME reference_frame, enum SL_UNIT unit,
1595+
INTERFACE_API enum SL_POSITIONAL_TRACKING_STATE sl_fusion_get_position(struct SL_PoseData* pose, enum SL_REFERENCE_FRAME reference_frame,
15631596
struct SL_CameraIdentifier* uuid, enum SL_POSITION_TYPE retrieve_type);
15641597

15651598

0 commit comments

Comments
 (0)