Skip to content

Commit 54f8707

Browse files
authored
Merge pull request #13 from stereolabs/sdk_v3.3
SDK v3.3
2 parents 188f97a + d4fcbc9 commit 54f8707

File tree

7 files changed

+54
-10
lines changed

7 files changed

+54
-10
lines changed

README.md

+2-2
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 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.3.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 from the [official download page](https://www.stereolabs.com/developers/release/)
62+
* Install the latest ZED SDK v3.3.x from the [official download page](https://www.stereolabs.com/developers/release/)
6363
6464
* Update list of `apt` available packages
6565

gst-zed-meta/gstzedmeta.h

+6-2
Original file line numberDiff line numberDiff line change
@@ -84,8 +84,12 @@ struct _ZedSensors {
8484
};
8585

8686
enum class OBJECT_CLASS {
87-
PERSON = 0, /**< For people detection */
88-
VEHICLE = 1, /**< For vehicles detection. It can be cars, trucks, buses, motorcycles etc */
87+
PERSON = 0,
88+
VEHICLE = 1,
89+
BAG = 2,
90+
ANIMAL = 3,
91+
ELECTRONICS = 4,
92+
FRUIT_VEGETABLE = 5,
8993
LAST
9094
};
9195

gst-zed-od-overlay/gstzedodoverlay.cpp

+26-1
Original file line numberDiff line numberDiff line change
@@ -408,7 +408,32 @@ static void draw_objects( cv::Mat& image, guint8 obj_count, ZedObjectData* objs,
408408
double font_scale = 0.75;
409409

410410
std::stringstream txt_info;
411-
txt_info << "Id: " << objs[i].id << " - " << ((objs[i].label==OBJECT_CLASS::PERSON)?"PERSON":"VEHICLE");
411+
txt_info << "Id: " << objs[i].id << " - ";
412+
413+
switch (objs[i].label) {
414+
case OBJECT_CLASS::PERSON:
415+
txt_info << "PERSON";
416+
break;
417+
case OBJECT_CLASS::VEHICLE:
418+
txt_info << "VEHICLE";
419+
break;
420+
case OBJECT_CLASS::ANIMAL:
421+
txt_info << "ANIMAL";
422+
break;
423+
case OBJECT_CLASS::BAG:
424+
txt_info << "BAG";
425+
break;
426+
case OBJECT_CLASS::ELECTRONICS:
427+
txt_info << "ELECTRONICS";
428+
break;
429+
case OBJECT_CLASS::FRUIT_VEGETABLE:
430+
txt_info << "FRUIT_VEGETABLE";
431+
break;
432+
case OBJECT_CLASS::LAST:
433+
default:
434+
txt_info << "UNDEFINED";
435+
break;
436+
}
412437

413438
cv::Size txt_size = cv::getTextSize( txt_info.str(), font_face, font_scale, 1, &baseline );
414439

gst-zed-src/gstzedsrc.cpp

+12-3
Original file line numberDiff line numberDiff line change
@@ -108,8 +108,9 @@ typedef enum {
108108

109109
typedef enum {
110110
GST_ZEDSRC_OD_MULTI_CLASS_BOX = 0,
111-
GST_ZEDSRC_OD_HUMAN_BODY_FAST = 1,
112-
GST_ZEDSRC_OD_HUMAN_BODY_ACCURATE = 2
111+
GST_ZEDSRC_OD_MULTI_CLASS_BOX_ACCURATE = 1,
112+
GST_ZEDSRC_OD_HUMAN_BODY_FAST = 2,
113+
GST_ZEDSRC_OD_HUMAN_BODY_ACCURATE = 3
113114
} GstZedSrcOdModel;
114115

115116
#define DEFAULT_PROP_CAM_RES static_cast<gint>(sl::RESOLUTION::HD1080)
@@ -267,6 +268,9 @@ static GType gst_zedtsrc_od_model_get_type (void)
267268
{ GST_ZEDSRC_OD_MULTI_CLASS_BOX,
268269
"Any objects, bounding box based",
269270
"Object Detection Multi class" },
271+
{ GST_ZEDSRC_OD_MULTI_CLASS_BOX_ACCURATE,
272+
"Any objects, bounding box based, state of the art accuracy, requires powerful GPU",
273+
"Object Detection Multi class ACCURATE" },
270274
{ GST_ZEDSRC_OD_HUMAN_BODY_FAST,
271275
"Keypoints based, specific to human skeleton, real time performance even on Jetson or low end GPU cards",
272276
"Skeleton tracking FAST" },
@@ -871,7 +875,12 @@ static gboolean gst_zedsrc_calculate_caps(GstZedSrc* src)
871875
}
872876

873877
static gboolean gst_zedsrc_start( GstBaseSrc * bsrc )
874-
{
878+
{
879+
#if ZED_SDK_MAJOR_VERSION!=3 && ZED_SDK_MINOR_VERSION!=3
880+
GST_ELEMENT_ERROR (src, LIBRARY, FAILED,
881+
("Wrong ZED SDK version. SDK v3.3.x required "), (NULL));
882+
#endif
883+
875884
GstZedSrc *src = GST_ZED_SRC (bsrc);
876885
sl::ERROR_CODE ret;
877886

latest_changes.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
LATEST CHANGES
22
==============
33

4+
ZED SDK v3.3 (2020-11-27)
5+
---------------------
6+
- Add compatibility fix for ZED SDK v3.3
7+
- Add support for multiple OD class
8+
- Add support for MULTICLASS ACCURATE
9+
410
Release v0.1 (2020-08-24)
511
--------------------------
612
- ZED GStreamer package for Linux and Windows

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 resolution=2 framerate=30 od-enabled=true od-detection-model=1 ! \
12+
zedsrc stream-type=4 resolution=2 framerate=30 od-enabled=true od-detection-model=2 ! \
1313
zeddemux name=demux \
1414
demux.src_left ! queue ! zedodoverlay ! queue ! autovideoconvert ! fpsdisplaysink \
1515
demux.src_aux ! queue ! autovideoconvert ! fpsdisplaysink

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 resolution=2 framerate=30 od-enabled=true od-detection-model=1 ! ^
10+
zedsrc stream-type=4 resolution=2 framerate=30 od-enabled=true od-detection-model=2 ! ^
1111
zeddemux name=demux ^
1212
demux.src_left ! queue ! zedodoverlay ! queue ! autovideoconvert ! fpsdisplaysink ^
1313
demux.src_aux ! queue ! autovideoconvert ! fpsdisplaysink

0 commit comments

Comments
 (0)