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
- Add new field `frame_id` to `GstZedSrcMeta` in order to track the meta/buffer throughout the GStreamer pipeline (when working with source code) [Thx @ryanppeters]
16
+
- Add support for new Object Detection models in `od-detection-model` (Person Head and Person Head ACCURATE)
Copy file name to clipboardexpand all lines: README.md
+12-4
Original file line number
Diff line number
Diff line change
@@ -38,7 +38,7 @@ GStreamer plugin package for ZED Cameras. The package is composed of several plu
38
38
39
39
### Windows installation
40
40
41
-
* Install the latest ZED SDK v3.7.x from the [official download page](https://www.stereolabs.com/developers/release/)[Optional to compile the `zedsrc` plugin to acquire data from a ZED camera device]
41
+
* Install the latest ZED SDK v3.8.x from the [official download page](https://www.stereolabs.com/developers/release/)[Optional to compile the `zedsrc` plugin to acquire data from a ZED camera device]
42
42
* Install [Git](https://git-scm.com/) or download a ZIP archive
43
43
* Install [CMake](https://cmake.org/)
44
44
* Install a [GStreamer distribution (**both `runtime` and `development` installers**)](https://gstreamer.freedesktop.org/download/).
@@ -59,7 +59,7 @@ GStreamer plugin package for ZED Cameras. The package is composed of several plu
59
59
60
60
#### Install prerequisites
61
61
62
-
* Install the latest ZED SDK v3.5.x from the [official download page](https://www.stereolabs.com/developers/release/)
62
+
* Install the latest ZED SDK v3.8.x from the [official download page](https://www.stereolabs.com/developers/release/)
63
63
64
64
* Update list of `apt` available packages
65
65
@@ -135,7 +135,11 @@ Most of the parameters follow the same name as the C++ API. Except that `_` is r
* `coordinate-system`: 3D Coordinate System - {Image (0) - Left handed, Y up (1) - Right handed, Y up (2) - Right handed, Z up (3) - Left handed, Z up (4) - Right handed, Z up, X fwd (5)}
138
-
* `camera-disable-self-calib`: Disable the self calibration processing when the camera is opened - {TRUE, FALSE}
138
+
* `roi`: Enable region of interest for SDK to focus on - {TRUE, FALSE}
139
+
* `roi-x`: Region of interest focus left 'X' coordinate (-1 to not set ROI) - {-1,2208}
140
+
* `roi-y`: Region of interest focus left 'Y' coordinate (-1 to not set ROI) - {-1,1242}
141
+
* `roi-w`: Region of interest focus height (-1 to not set ROI) - {-1,2208}
142
+
* `roi-h`: Region of interest focus height (-1 to not set ROI) - {-1,1242}
* `confidence-threshold`: Specify the Depth Confidence Threshold - [0,100]
141
145
* `texture-confidence-threshold`: Specify the Texture Confidence Threshold - [0,100]
@@ -148,6 +152,8 @@ Most of the parameters follow the same name as the C++ API. Except that `_` is r
148
152
* `enable-imu-fusion`: This setting allows you to enable or disable IMU fusion. When set to false, only the optical odometry will be used - {TRUE, FALSE}
149
153
* `enable-pose-smoothing`: This mode enables smooth pose correction for small drift correction - {TRUE, FALSE}
150
154
* `set-floor-as-origin`: This mode initializes the tracking to be aligned with the floor plane to better position the camera in space.
155
+
* `set-gravity-as-origin`: This mode initializes the tracking to override 2 of the 3 rotations from initial-world-transform using IMU gravity default: true - {TRUE, FALSE}
156
+
* `pos-depth-min-range`: Sets the minimum depth used by the SDK for positional tracking (-1 for no minimum depth) - {-1, 65535}
151
157
* `initial-world-transform-x`: X position of the camera in the world frame when the camera is started.
152
158
* `initial-world-transform-y`: Y position of the camera in the world frame when the camera is started.
153
159
* `initial-world-transform-z`: Z position of the camera in the world frame when the camera is started.
@@ -157,10 +163,12 @@ Most of the parameters follow the same name as the C++ API. Except that `_` is r
* `od-image-sync`: Set to TRUE to enable Object Detection frame synchronization - {TRUE, FALSE}
159
165
* `od-enable-tracking`: Set to TRUE to enable tracking for the detected objects - {TRUE, FALSE}
160
-
* `od-detection-model`: Object Detection Model - {(0): Object Detection Multi class, (1): Object Detection Multi class ACCURATE, (2): Skeleton tracking FAST, (3): Skeleton tracking ACCURATE, (4): Object Detection Multi class MEDIUM, (5): Skeleton tracking MEDIUM}
166
+
* `od-detection-model`: Object Detection Model - {(0): Object Detection Multi class, (1): Object Detection Multi class ACCURATE, (2): Skeleton tracking FAST, (3): Skeleton tracking ACCURATE, (4): Object Detection Multi class MEDIUM, (5): Skeleton tracking MEDIUM, (6): Person Head, (7): Person Head ACCURATE}
* `od-max-range`: Maximum Detection Range - [-1,20000]
163
169
* `od-body-fitting`: Set to TRUE to enable body fitting for skeleton tracking - {TRUE, FALSE}
170
+
* `od-prediction-timeout-s`: Timeout when an object is not detected anymore for the SDK to predict its position for a short period before its state switched to SEARCHING (sec)
171
+
* `od-allow-reduced-precision-inference`: Runs inference at a lower precision to improve runtime and memory usage - {TRUE, FALSE}
0 commit comments