Please provide complete information as applicable to your setup.
• Hardware Platform (Jetson / GPU) rtx 3060
• DeepStream Version 7.1
• TensorRT Version10.3
**• NVIDIA GPU Driver Version (valid for GPU only)**560.35.03
@fanzh I have edited my config_tracker_NvDCF_perf.yml by adding this to generate the re-id embedding vectors.
ReID:
reidType: 2 # The type of reid among { DUMMY=0, NvDEEPSORT=1, Reid based reassoc=2, both NvDEEPSORT and reid based reassoc=3}
[Reid Network Info]
batchSize: 100 # Batch size of reid network
workspaceSize: 1000 # Workspace size to be used by reid engine, in MB
reidFeatureSize: 256 # Size of reid feature
reidHistorySize: 100 # Max number of reid features kept for one object
inferDims: [3, 256, 128] # Reid network input dimension CHW or HWC based on inputOrder
networkMode: 1 # Reid network inference precision mode among {fp32=0, fp16=1, int8=2 }
[Input Preprocessing]
inputOrder: 0 # Reid network input order among { NCHW=0, NHWC=1 }. Batch will be converted to the specified order before reid input.
colorFormat: 0 # Reid network input color format among {RGB=0, BGR=1 }. Batch will be converted to the specified color before reid input.
offsets: [123.6750, 116.2800, 103.5300] # Array of values to be subtracted from each input channel, with length equal to number of channels
netScaleFactor: 0.01735207 # Scaling factor for reid network input after substracting offsets
keepAspc: 1 # Whether to keep aspc ratio when resizing input objects for reid
[Output Postprocessing]
addFeatureNormalization: 1 # If reid feature is not normalized in network, adding normalization on output so each reid feature has l2 norm equal to 1
minVisibility4GalleryUpdate: 0.6 # Add ReID embedding to the gallery only if the visibility is not lower than this
outputReidTensor: 1
[Paths and Names]
tltEncodedModel: “/opt/nvidia/deepstream/deepstream-7.1/samples/models/Tracker/resnet50_market1501.etlt” # NVIDIA TAO model path
tltModelKey: “nvidia_tao” # NVIDIA TAO model key
modelEngineFile: “/opt/nvidia/deepstream/deepstream-7.1/samples/models/Tracker/resnet50_market1501.etlt_b100_gpu0_fp16.engine” # Engine file path
But this setup is not generating the engine file therefore the reid vectors are not generated. what is goig wrong here? do i need to additionally install anything?