**• Hardware Platform (Jetson / GPU) Jetson orin nx
**• DeepStream Version: 6.2
**• JetPack Version (valid for Jetson only) 5.1.1
**• TensorRT Version8.2.2
When I run two detection models of yolov5n, one pgie(vehicle) and one sgie(tail), the sgie’s bbox goes beyond the pgie,
the srcWidth=1920 and srcHeight=536.
from the highlight data in the picture, 395 should be the vehicle’s height, the vehicle’ bottom should be 134+395.
why dose this blue car have no tail part?
The tail part of the blue car is the highlighted part of the oval.
Because the top of tail is 402 and the top of vehicle is 134, 402+134=536 . It overlaps the border of picsrc
add this code to /opt/nvidia/deepstream/deepstream/sources/gst-plugins/gst-nvinfer/gstnvinfer_meta_utils.cpp.
In gst-nvinfer directory, rebuild libnvdsgst_infer.so, then replace /opt/nvidia/deepstream/deepstream/lib/gst-plugins/libnvdsgst_infer.so with the new so.
I just want to know the real cause of this problem, because the tail’ top is out of vehicle’ height , it mean the center coordinate(x,y) is out of source, But this does not happen in yolov5.