Skip to content

Commit 1dc4bb3

Browse files
authored
Merge pull request #44 from stereolabs/devel
Merge PR #43 and add new features
2 parents 7315ad8 + 73376cf commit 1dc4bb3

File tree

9 files changed

+258
-20
lines changed

9 files changed

+258
-20
lines changed

latest_changes.md CHANGELOG.rst

+15-1
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,23 @@
11
LATEST CHANGES
22
==============
33

4+
ZED SDK v3.8
5+
-------------
6+
- Add support for Region of Interest [Thx @ryanppeters]
7+
* Add `roi` parameter
8+
* Add `roi-x` parameter
9+
* Add `roi-y` parameter
10+
* Add `roi-w` parameter
11+
* Add `roi-h` parameter
12+
- Add `set-gravity-as-origin` parameter [Thx @ryanppeters]
13+
- Add `od-prediction-timeout-s` parameter [Thx @ryanppeters]
14+
- Add `od-allow-reduced-precision-inference` parameter [Thx @ryanppeters]
15+
- 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)
17+
418
ZED SDK v3.7
519
-------------
6-
- Fix issue with texture confidence threshold invalidating th edepth map
20+
- Fix issue with texture confidence threshold invalidating the depth map
721
- Add support for NEURAL depth mode
822

923
ZED SDK v3.5

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ endif()
135135

136136
####################################################################
137137
# USEFUL FILES
138-
FILE(GLOB_RECURSE doc_files ${CMAKE_SOURCE_DIR}/*.md)
138+
FILE(GLOB_RECURSE doc_files ${CMAKE_SOURCE_DIR}/*.md ${CMAKE_SOURCE_DIR}/*.rst)
139139
add_custom_target("DOCS" SOURCES ${doc_files})
140140
FILE(GLOB_RECURSE script_files ${CMAKE_SOURCE_DIR}/scripts/*)
141141
add_custom_target("SCRIPTS" SOURCES ${script_files})

README.md

+12-4
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ GStreamer plugin package for ZED Cameras. The package is composed of several plu
3838

3939
### Windows installation
4040

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]
4242
* Install [Git](https://git-scm.com/) or download a ZIP archive
4343
* Install [CMake](https://cmake.org/)
4444
* 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
5959
6060
#### Install prerequisites
6161
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/)
6363
6464
* Update list of `apt` available packages
6565
@@ -135,7 +135,11 @@ Most of the parameters follow the same name as the C++ API. Except that `_` is r
135135
* `depth-maximum-distance`: Maximum depth value
136136
* `depth-mode`: Depth Mode - {NONE (0), PERFORMANCE (1), QUALITY (2), ULTRA (3)}
137137
* `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}
139143
* `depth-stabilization`: Enable depth stabilization - {TRUE, FALSE}
140144
* `confidence-threshold`: Specify the Depth Confidence Threshold - [0,100]
141145
* `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
148152
* `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}
149153
* `enable-pose-smoothing`: This mode enables smooth pose correction for small drift correction - {TRUE, FALSE}
150154
* `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}
151157
* `initial-world-transform-x`: X position of the camera in the world frame when the camera is started.
152158
* `initial-world-transform-y`: Y position of the camera in the world frame when the camera is started.
153159
* `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
157163
* `od-enabled`: Enable Object Detection - {TRUE, FALSE}
158164
* `od-image-sync`: Set to TRUE to enable Object Detection frame synchronization - {TRUE, FALSE}
159165
* `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}
161167
* `od-confidence`: Minimum Detection Confidence - {0,100}
162168
* `od-max-range`: Maximum Detection Range - [-1,20000]
163169
* `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}
164172
* `brightness`: Image brightness - {0,8}
165173
* `contrast`: Image contrast - {0,8}
166174
* `hue`: Image hue - {0,11}

gst-zed-data-mux/gstzeddatamux.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -466,7 +466,7 @@ static GstFlowReturn gst_zeddatamux_chain_data(GstPad* pad, GstObject * parent,
466466
gst_buffer_add_zed_src_meta( out_buf,
467467
meta->info,
468468
meta->pose, meta->sens,
469-
meta->od_enabled, meta->obj_count, meta->objects);
469+
meta->od_enabled, meta->obj_count, meta->objects, meta->frame_id);
470470

471471
// ----> Timestamp meta-data
472472
GST_TRACE ("Out buffer set timestamp" );
@@ -621,7 +621,7 @@ static GstFlowReturn gst_zeddatamux_chain_video(GstPad* pad, GstObject * parent,
621621
gst_buffer_add_zed_src_meta( out_buf,
622622
meta->info,
623623
meta->pose, meta->sens,
624-
meta->od_enabled, meta->obj_count, meta->objects);
624+
meta->od_enabled, meta->obj_count, meta->objects, meta->frame_id);
625625

626626
// ----> Timestamp meta-data
627627
GST_TRACE ("Out buffer set timestamp" );

gst-zed-demux/gstzeddemux.cpp

+4-2
Original file line numberDiff line numberDiff line change
@@ -560,7 +560,8 @@ static GstFlowReturn gst_zeddemux_chain(GstPad* pad, GstObject * parent, GstBuff
560560
meta->sens,
561561
meta->od_enabled,
562562
meta->obj_count,
563-
meta->objects );
563+
meta->objects,
564+
meta->frame_id );
564565
}
565566

566567
GST_TRACE ("Left buffer set timestamp" );
@@ -651,7 +652,8 @@ static GstFlowReturn gst_zeddemux_chain(GstPad* pad, GstObject * parent, GstBuff
651652
meta->sens,
652653
meta->od_enabled,
653654
meta->obj_count,
654-
meta->objects );
655+
meta->objects,
656+
meta->frame_id );
655657
}
656658

657659
GST_TRACE ("Aux buffer set timestamp" );

gst-zed-meta/gstzedmeta.cpp

+7-3
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ GType gst_zed_src_meta_api_get_type()
5050
{
5151
GST_TRACE( "gst_zed_src_meta_api_get_type");
5252

53-
static volatile GType type;
53+
static GType type;
5454

5555
static const gchar *tags[] =
5656
{ /*GST_META_TAG_VIDEO_STR, GST_META_TAG_VIDEO_SIZE_STR,
@@ -123,7 +123,8 @@ static gboolean gst_zed_src_meta_transform( GstBuffer* transbuf, GstMeta * meta,
123123
emeta->sens,
124124
emeta->od_enabled,
125125
emeta->obj_count,
126-
emeta->objects );
126+
emeta->objects,
127+
emeta->frame_id);
127128

128129

129130
return TRUE;
@@ -162,7 +163,8 @@ GstZedSrcMeta* gst_buffer_add_zed_src_meta( GstBuffer* buffer,
162163
ZedSensors& sens,
163164
gboolean od_enabled,
164165
guint8 obj_count,
165-
ZedObjectData* objects)
166+
ZedObjectData* objects,
167+
guint64 frame_id)
166168
{
167169
GST_TRACE( "gst_buffer_add_zed_src_meta" );
168170

@@ -183,5 +185,7 @@ GstZedSrcMeta* gst_buffer_add_zed_src_meta( GstBuffer* buffer,
183185

184186
memcpy( &meta->objects, objects, obj_count*sizeof(ZedObjectData));
185187

188+
meta->frame_id = frame_id;
189+
186190
return meta;
187191
}

gst-zed-meta/gstzedmeta.h

+3-1
Original file line numberDiff line numberDiff line change
@@ -184,6 +184,7 @@ struct _GstZedSrcMeta {
184184

185185
gboolean od_enabled;
186186
guint8 obj_count;
187+
guint64 frame_id;
187188
ZedObjectData objects[256];
188189
};
189190

@@ -258,7 +259,8 @@ GstZedSrcMeta* gst_buffer_add_zed_src_meta( GstBuffer* buffer,
258259
ZedSensors& sens,
259260
gboolean od_enabled,
260261
guint8 obj_count,
261-
ZedObjectData* objects);
262+
ZedObjectData* objects,
263+
guint64 frame_id);
262264

263265
G_END_DECLS
264266

0 commit comments

Comments
 (0)