Please provide complete information as applicable to your setup.
**• Hardware Platform -------------------> GPU
**• DeepStream Version ------------------> 6.1.1
• TensorRT Version ---------------------> 8.5
• NVIDIA GPU Driver Version (valid for GPU only) -------------> 535
Hi,
After Primary model I want to filter and delete from metadata SO I used nvds-analytics after that tracker and then secondary model , But while take the pad from caps filter It’s showing both inside and outside of the ROI. This is my custom pipeline , [src-----> streammux ------>pgie -----> nvdsanalytics----->tracker ------> sgie —> nvvideoconvert-------> capsfilter—> sink
I used also deepstream nvanalytics -------> test apps
I did a little customisation ***************************************************
streammux.link(queue1)
queue1.link(pgie)
pgie.link(queue2)
queue2.link(nvanalytics)
nvanalytics.link(queue3)
queue3.link(tracker)
tracker.link(queue4)
queue4.link(tiler)
tiler.link(queue5)
queue5.link(nvvidconv)
nvvidconv.link(queue6)
queue6.link(nvosd)
nvosd.link(queue7)
queue7.link(nvvidconv_postosd)
nvvidconv_postosd.link(caps)
caps.link(encoder)
encoder.link(rtppay)
rtppay.link(sink)
[property]
enable=1
#Width height used for configuration to which below configs are configured
config-width=1920
config-height=1080
#osd-mode 0: Dont display any lines, rois and text
1: Display only lines, rois and static text i.e. labels
2: Display all info from 1 plus information about counts
osd-mode=2
set OSD font size that has to be displayed
display-font-size=12
Per stream configuration
[roi-filtering-stream-0]
enable or disable following feature
enable=1
#ROI to filter select objects, and remove from meta data
roi-RF=179;197;183;600;565;670;1017;473;1046;67;662;42
remove objects in the ROI
inverse-roi=0
class-id=-1
I able to see the feed but outside ROI and inside the roi both It’s tracking and showing output . I want it should not be outside the ROI and obj_meta outside ROI should not pass to tracker as well .
what I need to do and How I can achieve it ?