Please provide complete information as applicable to your setup.
**• Hardware Platform (Jetson / GPU) jetson orin nx
**• DeepStream Version 7.0
**• JetPack Version (valid for Jetson only) 6.0
**• TensorRT Version 8.6
• NVIDIA GPU Driver Version (valid for GPU only)
**• Issue Type( questions, new requirements, bugs) questions
• How to reproduce the issue ? (This is for bugs. Including which sample app is using, the configuration files content, the command line used and other details for reproducing)
• Requirement details( This is for new requirement. Including the module name-for which plugin or for which sample application, the function description)
I use PGIE(yolov7) and SGIE(yolov7) by this pipline:
gst-launch-1.0 rtspsrc latency=200 location=rtsp://***************/h265/ch1/main/av_stream drop-on-latency=1 ! rtph265depay ! nvv4l2decoder ! videorate ! “video/x-raw(memory:NVMM), framerate=(fraction)18/1”
! mux.sink_0 nvstreammux name=mux batch_size=1 width=1920 height=1080 enable-padding=0 nvbuf-memory-type=0 batched-push-timeout=100 live-source=0 ! queue ! nvvideoconvert ! queue
! nvinfer config-file-path=/opt/nvidia/deepstream/deepstream-7.0/sources/objectDetector_Yolo/config_infer_primary_TX.txt interval=10 batch-size=8 unique-id=1
! nvinfer config-file-path=/opt/nvidia/deepstream/deepstream-7.0/sources/objectDetector_Yolo/config_infer_secondary_TX.txt unique-id=2 process-mode=2
! nvtracker name=tracker1 ll-config-file=/opt/nvidia/deepstream/deepstream/samples/configs/deepstream-app/config_tracker_NvDCF_perf.yml ll-lib-file=/opt/nvidia/deepstream/deepstream/lib/libnvds_nvmultiobjecttracker.so tracker-width=640 tracker-height=384 user-meta-pool-size=128
! nvvideoconvert ! ‘video/x-raw(memory:NVMM), format=RGBA’ ! nvdsosd process-mode=1 ! nv3dsink
it is like pgie->sgie->tracker
my pgie is a detector for only one class:person and my sgie is a detector for 7 classes
I find that the show on my window, the label of pgie is sgie’s label
then I print the object_meta in plugin nvosd, it’s show that all the unique_component_id, obj_label, text_params.display_text are sgie’s result but the rect_params is pgie’s
How could I use two detector nvinfe in my pipeline?