Skip to content

Commit b768386

Browse files
committed
Update to 1.1.1 release
Minor update: - Support DeepStream SDK 6.0.1 - Fix memory leak in deepstream-test3 app - Add missing binding for network_info field in NvDsInferTensorMeta - Cross-compile dockerfile update
1 parent 20c6b13 commit b768386

File tree

23 files changed

+55
-40
lines changed

23 files changed

+55
-40
lines changed

HOWTO.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ This guide provides resources for DeepStream application development in Python.
1616
## Prerequisites
1717

1818
* Ubuntu 18.04
19-
* [DeepStream SDK 6.0](https://developer.nvidia.com/deepstream-download) or later
19+
* [DeepStream SDK 6.0.1](https://developer.nvidia.com/deepstream-download) or later
2020
* Python 3.6+
2121
* [Gst Python](https://gstreamer.freedesktop.org/modules/gst-python.html) v1.14.5
2222

@@ -45,11 +45,11 @@ Note: Compiling bindings now also generates a pip installable python wheel for t
4545
<a name="run_samples"></a>
4646
## Running Sample Applications
4747

48-
Clone the deepstream_python_apps repo under <DeepStream 6.0 ROOT>/sources:
48+
Clone the deepstream_python_apps repo under <DeepStream 6.0.1 ROOT>/sources:
4949
git clone https://github.com/NVIDIA-AI-IOT/deepstream_python_apps
5050

5151
This will create the following directory:
52-
```<DeepStream 6.0 ROOT>/sources/deepstream_python_apps```
52+
```<DeepStream 6.0.1 ROOT>/sources/deepstream_python_apps```
5353

5454
The Python apps are under the "apps" directory.
5555
Go into each app directory and follow instructions in the README.
@@ -211,5 +211,5 @@ This function populates the input buffer with a timestamp generated according to
211211
<a name="imagedata_access"></a>
212212
## Image Data Access
213213

214-
Decoded images are accessible as NumPy arrays via the `get_nvds_buf_surface` function. This function is documented in the [API Guide](https://docs.nvidia.com/metropolis/deepstream/6.0/python-api/index.html).
214+
Decoded images are accessible as NumPy arrays via the `get_nvds_buf_surface` function. This function is documented in the [API Guide](https://docs.nvidia.com/metropolis/deepstream/6.0.1/python-api/index.html).
215215
Please see the [deepstream-imagedata-multistream](apps/deepstream-imagedata-multistream) sample application for an example of image data usage.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
This repository contains Python bindings and sample applications for the [DeepStream SDK](https://developer.nvidia.com/deepstream-sdk).
44

5-
SDK version supported: 6.0
5+
SDK version supported: 6.0.1
66

77
<b>NEW: The bindings sources along with build instructions are now available under [bindings](bindings)! </b>
88

apps/README

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ DeepStream SDK Python Bindings
2020
================================================================================
2121
Setup pre-requisites:
2222
- Ubuntu 18.04
23-
- NVIDIA DeepStream SDK 6.0
23+
- NVIDIA DeepStream SDK 6.0.1
2424
- Python 3.6
2525
- Gst-python
2626

@@ -58,7 +58,7 @@ The DeepStream Python package includes:
5858
Installing Pre-requisites:
5959
--------------------------------------------------------------------------------
6060

61-
DeepStream SDK 6.0
61+
DeepStream SDK 6.0.1
6262
--------------------
6363
Download and install from https://developer.nvidia.com/deepstream-download
6464

@@ -76,7 +76,7 @@ $ sudo apt install python3-gi python3-dev python3-gst-1.0 -y
7676
--------------------------------------------------------------------------------
7777
Running the samples
7878
--------------------------------------------------------------------------------
79-
The apps are configured to work from inside the DeepStream SDK 6.0 installation.
79+
The apps are configured to work from inside the DeepStream SDK 6.0.1 installation.
8080

8181
Clone the deepstream_python_apps repo under <DeepStream ROOT>/sources:
8282
$ git clone https://github.com/NVIDIA-AI-IOT/deepstream_python_apps

apps/deepstream-imagedata-multistream-redaction/README

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
################################################################################
1717

1818
Prerequisites:
19-
- DeepStreamSDK 6.0
19+
- DeepStreamSDK 6.0.1
2020
- Python 3.6
2121
- Gst-python
2222
- NumPy package
@@ -39,7 +39,7 @@ Yet, we need to install the introspection typelib package:
3939
$ sudo apt-get install gobject-introspection gir1.2-gst-rtsp-server-1.0
4040

4141
Download Peoplenet model:
42-
$ cd /opt/nvidia/deepstream/deepstream-6.0/samples/configs/tao_pretrained_models
42+
$ cd /opt/nvidia/deepstream/deepstream/samples/configs/tao_pretrained_models
4343
$ mkdir -p ../../models/tao_pretrained_models/peoplenet && wget https://api.ngc.nvidia.com/v2/models/nvidia/tao/peoplenet/versions/pruned_v2.1/files/resnet34_peoplenet_pruned.etlt \
4444
-O ../../models/tao_pretrained_models/peoplenet/resnet34_peoplenet_pruned.etlt
4545

apps/deepstream-imagedata-multistream/README

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
################################################################################
1717

1818
Prerequisites:
19-
- DeepStreamSDK 6.0
19+
- DeepStreamSDK 6.0.1
2020
- Python 3.6
2121
- Gst-python
2222
- NumPy package

apps/deepstream-nvdsanalytics/README

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
################################################################################
1717

1818
Prerequisites:
19-
- DeepStreamSDK 6.0
19+
- DeepStreamSDK 6.0.1
2020
- Python 3.6
2121
- Gst-python
2222

apps/deepstream-opticalflow/README

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
################################################################################
1717

1818
Prerequisites:
19-
- DeepStreamSDK 6.0
19+
- DeepStreamSDK 6.0.1
2020
- Python 3
2121
- Gst-python
2222
- NumPy package

apps/deepstream-rtsp-in-rtsp-out/README

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
################################################################################
1717

1818
Prequisites:
19-
- DeepStreamSDK 6.0
19+
- DeepStreamSDK 6.0.1
2020
- Python 3.6+
2121
- Gst-python
2222
- GstRtspServer

apps/deepstream-segmentation/README

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
################################################################################
1717

1818
Prerequisites:
19-
- DeepStreamSDK 6.0
19+
- DeepStreamSDK 6.0.1
2020
- Python 3.6
2121
- Gst-python
2222
- NumPy package

apps/deepstream-ssd-parser/README

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
################################################################################
1717

1818
Prequisites:
19-
- DeepStreamSDK 6.0
19+
- DeepStreamSDK 6.0.1
2020
- NVIDIA Triton Inference Server
2121
- Python 3.6
2222
- Gst-python

0 commit comments

Comments
 (0)