Skip to content

Commit 605300f

Browse files
committed
Minor version string and typo fixes.
1 parent b768386 commit 605300f

File tree

7 files changed

+10
-9
lines changed

7 files changed

+10
-9
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,8 @@ We currently provide the following sample applications:
5151
* [deepstream-segmentation](apps/deepstream-segmentation) -- segmentation and visualization pipeline with segmentation mask returned in NumPy array
5252
* [deepstream-nvdsanalytics](apps/deepstream-nvdsanalytics) -- multistream pipeline with analytics plugin
5353
* [runtime_source_add_delete](apps/runtime_source_add_delete) -- add/delete source streams at runtime
54-
* [deepstream-imagedata-multistream-redaction](apps/deepstream-imagedata-multistream-redaction) -- multi-stream pipeline with face detection and redaction (<b>NEW</b>)
55-
* [deepstream-rtsp-in-rtsp-out](apps/deepstream-rtsp-in-rtsp-out) -- multi-stream pipeline with RTSP input/output (<b>NEW</b>)
54+
* [deepstream-imagedata-multistream-redaction](apps/deepstream-imagedata-multistream-redaction) -- multi-stream pipeline with face detection and redaction
55+
* [deepstream-rtsp-in-rtsp-out](apps/deepstream-rtsp-in-rtsp-out) -- multi-stream pipeline with RTSP input/output
5656

5757

5858
Detailed application information is provided in each application's subdirectory under [apps](apps).

apps/deepstream-imagedata-multistream-redaction/README

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ Download Peoplenet model:
4242
$ 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
45+
$ wget https://api.ngc.nvidia.com/v2/models/nvidia/tao/peoplenet/versions/pruned_v2.1/files/labels.txt -O ../../../configs/tao_pretrained_models/labels_peoplenet.txt
4546

4647
To run:
4748
$ python3 deepstream_imagedata-multistream_redaction.py -i <uri1> [uri2] ... [uriN] -c {H264,H265} -b BITRATE

bindings/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ set(CMAKE_SHARED_LINKER_FLAGS "-Wl,--no-undefined")
5050

5151
# Setting python build versions
5252
set(PYTHON_VERSION ${PYTHON_MAJOR_VERSION}.${PYTHON_MINOR_VERSION})
53-
set(PIP_WHEEL pyds-1.1.0-py3-none-${PIP_PLATFORM}.whl)
53+
set(PIP_WHEEL pyds-1.1.1-py3-none-${PIP_PLATFORM}.whl)
5454

5555
# Describing pyds build
5656
project(pyds DESCRIPTION "Python bindings for Deepstream")

bindings/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ sudo apt-get install qemu binfmt-support qemu-user-static
115115
docker run --rm --privileged dockerhub.nvidia.com/multiarch/qemu-user-static --reset -p yes
116116

117117
# Verify qemu installation
118-
docker run --rm -t docker pull nvcr.io/nvidia/deepstream:6.0.1-samples uname -m
118+
docker run --rm -t nvcr.io/nvidia/deepstream:6.0.1-samples uname -m
119119
#aarch64
120120
```
121121

@@ -186,8 +186,8 @@ Build output is generated in the created export_pyds directory (deepstream_pytho
186186

187187
### 4.1 Installing the pip wheel
188188
```
189-
apt install libgirepository1.0-dev
190-
pip3 install ./pyds-1.1.0-py3-none*.whl
189+
apt install libgirepository1.0-dev libcairo2-dev
190+
pip3 install ./pyds-1.1.1-py3-none*.whl
191191
```
192192

193193
#### 4.1.1 pip wheel troubleshooting

bindings/packaging/setup.py

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

1818
setuptools.setup(
1919
name="pyds",
20-
version="1.1.0",
20+
version="1.1.1",
2121
author="NVIDIA",
2222
description="Install precompiled DeepStream Python bindings extension",
2323
url="nvidia.com",

bindings/qemu_docker/ubuntu-cross-aarch64.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
# See the License for the specific language governing permissions and
1414
# limitations under the License.
1515

16-
FROM nvcr.io/nvidia/deepstream:6.0.1-samples
16+
FROM nvcr.io/nvidia/deepstream/deepstream-l4t:6.0.1-samples
1717
LABEL maintainer="NVIDIA CORPORATION"
1818

1919
# Set timezone.

bindings/src/pyds.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
3535
#include <ndarrayobject.h>*/
3636

37-
#define PYDS_VERSION "1.1.0"
37+
#define PYDS_VERSION "1.1.1"
3838

3939
using namespace std;
4040
namespace py = pybind11;

0 commit comments

Comments
 (0)