Difference between detector_bbox_info , tracker_bbox_info and rect_params

Jetson Nano
Deepstream 5.1 SDK
Jetpack 4.5.1

I was reading this :
https://docs.nvidia.com/metropolis/deepstream/dev-guide/text/DS_plugin_metadata.html#new-metadata-fields

and I needed further clarity on the difference between the three.

Also do the rect_params.top,rect_params.left,rect_params.width,rect_params.height
Represent the four corners of the detection rectangle, if so which corners specifically.

Hi,
detector_bbox_info is the output of nvinfer plugin with the model, and tracker_bbox_info is the output of nvtracker plugin. In previous release there is only rect_params which is the output of last component. In latest release the output result is kept so that you can access all data per your use-case.

1 Like

What is the correct way of accessing the detector_bbox_info and tracker_bbox_info .
Is it similar to rect_params or is it different ?

Hi,
There is code for fetching tracker_bbox_info in

/opt/nvidia/deepstream/deepstream-5.1/sources/apps/sample_apps/deepstream-app/deepstream_app.c

Please take a look. It is same for fetching detector_bbox_info.

1 Like

This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.