Application Migration to DeepStream 7.1 from DeepStream 7.0#
Running DeepStream 7.0 compiled Apps in DeepStream 7.1#
To run the old app from DeepStream 7.0 in DeepStream 7.1, create symlinks of the libraries so the old application can find them.:
mkdir /opt/nvidia/deepstream/deepstream-7.0
mkdir /opt/nvidia/deepstream/deepstream-7.0/lib
ln -s /opt/nvidia/deepstream/deepstream-7.1/lib/* /opt/nvidia/deepstream/deepstream-7.0/lib/
Compiling DeepStream 7.0 Apps in DeepStream 7.1#
Before compiling DeepStream 7.0 applications in DeepStream 7.1, modify the Makefiles
and set the NVDS_VERSION
flag to 7.1
.
There are two options to compile DeepStream 7.0 in DeepStream 7.1:
Option 1: Replace existing
sources/apps
from DeepStream-7.1 and copy the entire`sources/apps
directory from DeepStream-7.0.Option 2 : Individual applications in DeepStream SDK have dependency on sources under
apps-common
directory. Ideally, to compile those applications, you must use the same version of apps-common. In case you want to use the latest version, you may need to adjust some application function calls because of a change in application function definitions.
Migrating DeepStream 7.0 Gst-nvtracker to DeepStream 7.1#
In DeepStream 7.1, the past-frame data structure of Gst-nvtracker is renamed as Target Miscellaneous Data in nvds_tracker_meta.h
; and accordingly,
NvDsPastFrameObj
, NvDsPastFrameObjList
, NvDsPastFrameObjStream
and NvDsPastFrameObjBatch
are renamed as
NvDsTargetMiscDataFrame
, NvDsTargetMiscDataObject
, NvDsTargetMiscDataStream
and NvDsTargetMiscDataBatch
, respectively.
If a DeepStream 7.0 application or custom tracker uses the past-frame data, it should adopt the new miscellaneous data structures and recompile the source code when migrating to DS 7.1.
Note
By default, OpenCV is deprecated in DeepStream 6.1. However, you can enable OpenCV in plugins such as nvinfer
(nvdsinfer
) and dsexample
(gst-dsexample
) by setting WITH_OPENCV=1 in the Makefile of these components. Refer to the component README for more instructions.