-
Notifications
You must be signed in to change notification settings - Fork 3
/
README
35 lines (30 loc) · 1.64 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
################################################################################
# Copyright (c) 2019-2021, NVIDIA CORPORATION. All rights reserved.
#
# NVIDIA Corporation and its licensors retain all intellectual property
# and proprietary rights in and to this software, related documentation
# and any modifications thereto. Any use, reproduction, disclosure or
# distribution of this software and related documentation without an express
# license agreement from NVIDIA Corporation is strictly prohibited.
#
################################################################################
Refer to the DeepStream SDK documentation for a description of the "nvinfer"
plugin and "NvDsInfer" API.
--------------------------------------------------------------------------------
Pre-requisites:
- GStreamer-1.0 Development package
- GStreamer-1.0 Base Plugins Development package
- CUDA Runtime 10.0+
Install gstreamer developement packages using:
sudo apt-get install libgstreamer-plugins-base1.0-dev libgstreamer1.0-dev
--------------------------------------------------------------------------------
Compiling and installing the plugin:
Export or set in Makefile the appropriate CUDA_VER
Run make and sudo make install
NOTE:
1. To compile the sources, run make with "sudo" or root permission.
2. OpenCV has been deprecated by default, so GroupRectangles will not work.
To use GroupRectangles, enable `WITH_OPENCV=1` in the Makefile of nvdsinfer
(/opt/nvidia/deepstream/deepstream/sources/libs/nvdsinfer/Makefile) and
follow compilation and installation instructions present in the README
(/opt/nvidia/deepstream/deepstream/sources/libs/nvdsinfer/README).