@@ -98,7 +98,7 @@ GStreamer plugin package for ZED Cameras. The package is composed of several plu
98
98
99
99
* Check `ZED Video Source Plugin` installation inspecting its properties:
100
100
101
- `gst-inspect-1.0 zedgst-inspect-1.0 zedsrc`
101
+ `gst-inspect-1.0 zedsrc`
102
102
103
103
* Check `ZED Video Demuxer` installation inspecting its properties:
104
104
@@ -123,23 +123,22 @@ Most of the parameters follow the same name as the C++ API. Except that `_` is r
123
123
124
124
* `resolution`: stream resolution - {VGA (3), HD270 (2), HD1080 (1), HD2K (0)}
125
125
* `framerate`: stream framerate - {15, 30, 60, 100}
126
+ * `stream-type`: type of video stream - {Left image (0), Right image (1), Stereo couple (2), 16 bit depth (3), Left+Depth (4)}
126
127
* `verbose`: SDK verbose mode - {TRUE, FALSE}
127
128
* `flip`: flip streams vertically - {TRUE, FALSE, AUTO}
128
129
* `camera-id`: camera ID - [0, 256]
129
130
* `camera-sn`: camera serial number
130
131
* `svo-file-path`: SVO file path for SVO input
131
132
* `in-stream-ip-addr`: device(sender) IP address when using streaming input from ZED SDK
132
133
* `in-stream-port `: IP port when using streaming input from ZED SDK
133
- * `stream-type`: type of video stream - {Left image (0), Right image (1), Stereo couple (2), 16 bit depth (3), Left+Depth (4)}
134
134
* `min-depth`: Minimum depth value
135
135
* `max-depth`: Maximum depth value
136
- * `enable-right-side-measure `: Enable right side measures - {TRUE, FALSE}
137
136
* `disable-self-calib`: Disable the self calibration processing when the camera is opened - {TRUE, FALSE}
138
137
* `depth-stability`: Enable depth stabilization - {TRUE, FALSE}
139
138
* `pos-tracking`: Enable positional tracking - {TRUE, FALSE}
140
139
* `cam-static `: Set to TRUE if the camera is static - {TRUE, FALSE}
141
140
* `coord-system`: ZED SDK 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)}
142
- * `coord-system `: Enable Object Detection - {TRUE, FALSE}
141
+ * `od-enabled `: Enable Object Detection - {TRUE, FALSE}
143
142
* `od-tracking`: Enable tracking for the detected objects - {TRUE, FALSE}
144
143
* `od-detection-model`: Object Detection Model - {Multi class (0), Human Body Tracking FAST (1), Human Body Tracking ACCURATE (2)}
145
144
* `od-confidence`: Minimum Detection Confidence - [0,100]
@@ -150,10 +149,12 @@ Most of the parameters follow the same name as the C++ API. Except that `_` is r
150
149
* `stream-data`: Enable binary data streaming on `src_data` pad - {TRUE, FALSE}
151
150
152
151
### `ZED Data CSV sink Plugin` parameters
152
+
153
153
* `location`: Location of the CSV file to write
154
154
* `append`: Append data to an already existing CSV file
155
155
156
156
## Metadata
157
+
157
158
The `zedsrc` plugin add metadata to the video stream containing information about the original frame size,
158
159
the camera position and orientatio, the sensors data and the object and skeleton detected by the Object Detection
159
160
module.
@@ -162,6 +163,7 @@ detected object data.
162
163
The `GstZedSrcMeta` structure is provided to handle the `zedmeta` metadata and it is available in the `gstzedmeta` library.
163
164
164
165
### GstZedSrcMeta structure
166
+
165
167
The GstZedSrcMeta is subdivided in four sub-structures:
166
168
* `ZedInfo`: info about camera model, stream type and original stream size
167
169
* `ZedPose`: position and orientation of the camera if positional tracking is enabled
@@ -249,7 +251,7 @@ More details about the sub-structures are available in the [`gstzedmeta.h` file]
249
251
250
252
```
251
253
gst-launch-1.0 \
252
- zedsrc stream-type=2 od-enabled=true od-detection-model=1 resolution=0 camera-fps =15 ! queue ! \
254
+ zedsrc stream-type=2 od-enabled=true od-detection-model=1 resolution=0 framerate =15 ! queue ! \
253
255
zedodoverlay ! queue ! \
254
256
autovideoconvert ! fpsdisplaysink
255
257
```
@@ -261,7 +263,7 @@ More details about the sub-structures are available in the [`gstzedmeta.h` file]
261
263
262
264
```
263
265
gst-launch-1.0 \
264
- zedsrc stream-type=0 od-enabled=true od-detection-model=2 resolution=0 camera-fps =15 ! queue ! \
266
+ zedsrc stream-type=0 od-enabled=true od-detection-model=2 resolution=0 framerate =15 ! queue ! \
265
267
zedodoverlay ! queue ! \
266
268
autovideoconvert ! fpsdisplaysink
267
269
```
@@ -273,7 +275,7 @@ More details about the sub-structures are available in the [`gstzedmeta.h` file]
273
275
274
276
```
275
277
gst-launch-1.0 \
276
- zedsrc stream-type=4 resolution=2 camera-fps =30 od-enabled=true od-detection-model=1 ! \
278
+ zedsrc stream-type=4 resolution=2 framerate =30 od-enabled=true od-detection-model=1 ! \
277
279
zeddemux name=demux \
278
280
demux.src_left ! queue ! zedodoverlay ! queue ! autovideoconvert ! fpsdisplaysink \
279
281
demux.src_aux ! queue ! autovideoconvert ! fpsdisplaysink
@@ -287,7 +289,7 @@ More details about the sub-structures are available in the [`gstzedmeta.h` file]
287
289
```
288
290
gst-launch-1.0 \
289
291
zeddatamux name=mux \
290
- zedsrc stream-type=4 resolution=0 camera-fps =15 od-enabled=true od-detection-model=1 ! \
292
+ zedsrc stream-type=4 resolution=0 framerate =15 od-enabled=true od-detection-model=1 ! \
291
293
zeddemux stream-data=true is-depth=true name=demux \
292
294
demux.src_aux ! queue ! autovideoconvert ! videoscale ! video/x-raw,width=672,height=376 ! queue ! fpsdisplaysink \
293
295
demux.src_data ! mux.sink_data \
0 commit comments