Skip to content

Commit e4240f3

Browse files
authored
Merge pull request #10 from stereolabs/fix_scripts
Fix scripts
2 parents 0e06d99 + 0cf0a28 commit e4240f3

13 files changed

+26
-24
lines changed

README.md

+10-8
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ GStreamer plugin package for ZED Cameras. The package is composed of several plu
9898
9999
* Check `ZED Video Source Plugin` installation inspecting its properties:
100100
101-
`gst-inspect-1.0 zedgst-inspect-1.0 zedsrc`
101+
`gst-inspect-1.0 zedsrc`
102102
103103
* Check `ZED Video Demuxer` installation inspecting its properties:
104104
@@ -123,23 +123,22 @@ Most of the parameters follow the same name as the C++ API. Except that `_` is r
123123
124124
* `resolution`: stream resolution - {VGA (3), HD270 (2), HD1080 (1), HD2K (0)}
125125
* `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)}
126127
* `verbose`: SDK verbose mode - {TRUE, FALSE}
127128
* `flip`: flip streams vertically - {TRUE, FALSE, AUTO}
128129
* `camera-id`: camera ID - [0, 256]
129130
* `camera-sn`: camera serial number
130131
* `svo-file-path`: SVO file path for SVO input
131132
* `in-stream-ip-addr`: device(sender) IP address when using streaming input from ZED SDK
132133
* `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)}
134134
* `min-depth`: Minimum depth value
135135
* `max-depth`: Maximum depth value
136-
* `enable-right-side-measure `: Enable right side measures - {TRUE, FALSE}
137136
* `disable-self-calib`: Disable the self calibration processing when the camera is opened - {TRUE, FALSE}
138137
* `depth-stability`: Enable depth stabilization - {TRUE, FALSE}
139138
* `pos-tracking`: Enable positional tracking - {TRUE, FALSE}
140139
* `cam-static `: Set to TRUE if the camera is static - {TRUE, FALSE}
141140
* `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}
143142
* `od-tracking`: Enable tracking for the detected objects - {TRUE, FALSE}
144143
* `od-detection-model`: Object Detection Model - {Multi class (0), Human Body Tracking FAST (1), Human Body Tracking ACCURATE (2)}
145144
* `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
150149
* `stream-data`: Enable binary data streaming on `src_data` pad - {TRUE, FALSE}
151150
152151
### `ZED Data CSV sink Plugin` parameters
152+
153153
* `location`: Location of the CSV file to write
154154
* `append`: Append data to an already existing CSV file
155155
156156
## Metadata
157+
157158
The `zedsrc` plugin add metadata to the video stream containing information about the original frame size,
158159
the camera position and orientatio, the sensors data and the object and skeleton detected by the Object Detection
159160
module.
@@ -162,6 +163,7 @@ detected object data.
162163
The `GstZedSrcMeta` structure is provided to handle the `zedmeta` metadata and it is available in the `gstzedmeta` library.
163164
164165
### GstZedSrcMeta structure
166+
165167
The GstZedSrcMeta is subdivided in four sub-structures:
166168
* `ZedInfo`: info about camera model, stream type and original stream size
167169
* `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]
249251
250252
```
251253
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 ! \
253255
zedodoverlay ! queue ! \
254256
autovideoconvert ! fpsdisplaysink
255257
```
@@ -261,7 +263,7 @@ More details about the sub-structures are available in the [`gstzedmeta.h` file]
261263
262264
```
263265
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 ! \
265267
zedodoverlay ! queue ! \
266268
autovideoconvert ! fpsdisplaysink
267269
```
@@ -273,7 +275,7 @@ More details about the sub-structures are available in the [`gstzedmeta.h` file]
273275
274276
```
275277
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 ! \
277279
zeddemux name=demux \
278280
demux.src_left ! queue ! zedodoverlay ! queue ! autovideoconvert ! fpsdisplaysink \
279281
demux.src_aux ! queue ! autovideoconvert ! fpsdisplaysink
@@ -287,7 +289,7 @@ More details about the sub-structures are available in the [`gstzedmeta.h` file]
287289
```
288290
gst-launch-1.0 \
289291
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 ! \
291293
zeddemux stream-data=true is-depth=true name=demux \
292294
demux.src_aux ! queue ! autovideoconvert ! videoscale ! video/x-raw,width=672,height=376 ! queue ! fpsdisplaysink \
293295
demux.src_data ! mux.sink_data \

gst-zed-src/gstzedsrc.cpp

+4-4
Original file line numberDiff line numberDiff line change
@@ -419,12 +419,12 @@ static void gst_zedsrc_class_init (GstZedSrcClass * klass)
419419

420420
/* Install GObject properties */
421421
g_object_class_install_property( gobject_class, PROP_CAM_RES,
422-
g_param_spec_enum("camera-resolution", "Camera Resolution",
422+
g_param_spec_enum("resolution", "Camera Resolution",
423423
"Camera Resolution", GST_TYPE_ZED_RESOL, DEFAULT_PROP_CAM_RES,
424424
(GParamFlags) (G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS)));
425425

426426
g_object_class_install_property( gobject_class, PROP_CAM_FPS,
427-
g_param_spec_enum("camera-fps", "Camera frame rate",
427+
g_param_spec_enum("framerate", "Camera frame rate",
428428
"Camera frame rate", GST_TYPE_ZED_FPS, DEFAULT_PROP_CAM_FPS,
429429
(GParamFlags) (G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS)));
430430

@@ -522,7 +522,7 @@ static void gst_zedsrc_class_init (GstZedSrcClass * klass)
522522
(GParamFlags) (G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS)));
523523

524524
g_object_class_install_property( gobject_class, PROP_OD_ENABLE,
525-
g_param_spec_boolean("enable-object-detection", "Object Detection enable",
525+
g_param_spec_boolean("od-enabled", "Object Detection enable",
526526
"Set to TRUE to enable Object Detection",
527527
DEFAULT_PROP_OD_ENABLE,
528528
(GParamFlags) (G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS)));
@@ -548,7 +548,7 @@ static void gst_zedsrc_class_init (GstZedSrcClass * klass)
548548

549549

550550
g_object_class_install_property( gobject_class, PROP_OD_DET_MODEL,
551-
g_param_spec_enum("object-detection-model", "Object detection model",
551+
g_param_spec_enum("od-detection-model", "Object detection model",
552552
"Object Detection Model", GST_TYPE_ZED_OD_MODEL_TYPE,
553553
DEFAULT_PROP_OD_MODEL,
554554
(GParamFlags) (G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS)));

scripts/linux/local-od-fps_overlay.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
# 4) Display the depth stream with FPS info using the `fpsdisplaysink` sink plugin.
1010

1111
gst-launch-1.0 \
12-
zedsrc stream-type=4 camera-resolution=2 camera-fps=30 enable-object-detection=true object-detection-model=1 ! \
12+
zedsrc stream-type=4 resolution=2 framerate=30 od-enabled=true od-detection-model=1 ! \
1313
zeddemux name=demux \
1414
demux.src_left ! queue ! zedodoverlay ! queue ! autovideoconvert ! fpsdisplaysink \
1515
demux.src_aux ! queue ! autovideoconvert ! fpsdisplaysink

scripts/linux/local-rgb-rescale-od-overlay.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
gst-launch-1.0 \
1818
zeddatamux name=mux \
19-
zedsrc stream-type=4 camera-resolution=0 camera-fps=30 object-detection-model=1 enable-object-detection=true ! \
19+
zedsrc stream-type=4 resolution=0 framerate=30 od-detection-model=1 od-enabled=true ! \
2020
zeddemux stream-data=true is-depth=true name=demux \
2121
demux.src_aux ! queue ! autovideoconvert ! videoscale ! video/x-raw,width=672,height=376 ! queue ! fpsdisplaysink \
2222
demux.src_data ! mux.sink_data \

scripts/linux/local-rgb-skel_accurate-overlay.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@
88
# 3) Convert the stream and display it with FPS information
99

1010
gst-launch-1.0 \
11-
zedsrc stream-type=0 enable-object-detection=true object-detection-model=2 camera-resolution=2 camera-fps=15 ! queue ! \
11+
zedsrc stream-type=0 od-enabled=true od-detection-model=2 resolution=2 framerate=15 ! queue ! \
1212
zedodoverlay ! queue ! \
1313
autovideoconvert ! fpsdisplaysink

scripts/linux/local-rgb-skel_fast-overlay.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@
99
# 3) Convert the stream and display it with FPS information
1010

1111
gst-launch-1.0 \
12-
zedsrc stream-type=2 enable-object-detection=true object-detection-model=1 camera-resolution=2 camera-fps=30 ! queue ! \
12+
zedsrc stream-type=2 od-enabled=true od-detection-model=1 resolution=2 framerate=30 ! queue ! \
1313
zedodoverlay ! queue ! \
1414
autovideoconvert ! fpsdisplaysink

scripts/linux/network-rgb-h264-sender.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44

55
# install x264enc: `sudo apt-get install gstreamer1.0-libav x264 gstreamer1.0-plugins-ugly`
66

7-
gst-launch-1.0 zedsrc camera-resolution=2 camera-fps=30 ! timeoverlay ! tee name=split has-chain=true ! \
7+
gst-launch-1.0 zedsrc resolution=2 framerate=30 ! timeoverlay ! tee name=split has-chain=true ! \
88
queue ! autovideoconvert ! fpsdisplaysink \
9-
split. ! queue max-size-time=0 max-size-bytes=0 max-size-buffers=0 ! autovideoconvert ! \
9+
split. ! queue max-size-time=0 max-size-bytes=0 max-size-buffers=0 ! autovideoconvert ! \
1010
x264enc byte-stream=true tune=zerolatency speed-preset=ultrafast bitrate=3000 ! \
1111
h264parse ! rtph264pay config-interval=-1 pt=96 ! queue ! \
1212
udpsink clients=127.0.0.1:5000 max-bitrate=3000000 sync=false async=false

scripts/linux/rtsp-rgb-h264-sender.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ export SERVER_IP=${HOST_IPS[0]}
1010

1111

1212
gst-zed-rtsp-launch -a ${SERVER_IP} \
13-
zedsrc camera-resolution=2 camera-fps=30 stream-type=0 ! identity silent=false ! \
13+
zedsrc resolution=2 framerate=30 stream-type=0 ! identity silent=false ! \
1414
videoconvert ! video/x-raw, format=I420 ! \
1515
x264enc tune=zerolatency bitrate=500000 speed-preset=ultrafast key-int-max=30 qp-min=8 qp-max=51 qp-step=1 ! \
1616
rtph264pay config-interval=-1 mtu=1500 pt=96 name=pay0

scripts/windows/local-od-fps_overlay.bat

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
:: 4) Display the depth stream with FPS info using the `fpsdisplaysink` sink plugin.
88

99
gst-launch-1.0 ^
10-
zedsrc stream-type=4 camera-resolution=2 camera-fps=30 enable-object-detection=true object-detection-model=1 ! ^
10+
zedsrc stream-type=4 resolution=2 framerate=30 od-enabled=true od-detection-model=1 ! ^
1111
zeddemux name=demux ^
1212
demux.src_left ! queue ! zedodoverlay ! queue ! autovideoconvert ! fpsdisplaysink ^
1313
demux.src_aux ! queue ! autovideoconvert ! fpsdisplaysink

scripts/windows/local-rgb-od_multi-overlay.bat

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@
66
:: 3) Convert the stream and display it with FPS information
77

88
gst-launch-1.0 ^
9-
zedsrc stream-type=0 enable-object-detection=true object-detection-model=0 camera-resolution=2 camera-fps=30 ! queue ! ^
9+
zedsrc stream-type=0 od-enabled=true od-detection-model=0 resolution=2 framerate=30 ! queue ! ^
1010
zedodoverlay ! queue ! ^
1111
autovideoconvert ! fpsdisplaysink

scripts/windows/local-rgb-rescale-od-overlay.bat

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
gst-launch-1.0 ^
1616
zeddatamux name=mux ^
17-
zedsrc stream-type=4 camera-resolution=0 camera-fps=30 object-detection-model=1 enable-object-detection=true ! ^
17+
zedsrc stream-type=4 resolution=0 framerate=30 od-detection-model=1 od-enabled=true ! ^
1818
zeddemux stream-data=true is-depth=true name=demux ^
1919
demux.src_aux ! queue ! autovideoconvert ! videoscale ! video/x-raw,width=672,height=376 ! queue ! fpsdisplaysink ^
2020
demux.src_data ! mux.sink_data ^

scripts/windows/local-rgb-skel_accurate-overlay.bat

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@
66
:: 3) Convert the stream and display it with FPS information
77

88
gst-launch-1.0 ^
9-
zedsrc stream-type=0 enable-object-detection=true object-detection-model=2 camera-resolution=2 camera-fps=15 ! queue ! ^
9+
zedsrc stream-type=0 od-enabled=true od-detection-model=2 resolution=2 framerate=15 ! queue ! ^
1010
zedodoverlay ! queue ! ^
1111
autovideoconvert ! fpsdisplaysink

scripts/windows/local-rgb-skel_fast-overlay.bat

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@
66
:: 3) Convert the stream and display it with FPS information
77

88
gst-launch-1.0 ^
9-
zedsrc stream-type=0 enable-object-detection=true object-detection-model=1 camera-resolution=2 camera-fps=30 ! queue ! ^
9+
zedsrc stream-type=0 od-enabled=true od-detection-model=1 resolution=2 framerate=30 ! queue ! ^
1010
zedodoverlay ! queue ! ^
1111
autovideoconvert ! fpsdisplaysink

0 commit comments

Comments
 (0)