Qustion about tracker-width and tracker-height

Please provide complete information as applicable to your setup.

• Hardware Platform (Jetson / GPU):jetson NX
• DeepStream Version:5.1
• JetPack Version (valid for Jetson only):4.5
• Issue Type( questions, new requirements, bugs):questions

I find the value of tracker-width and tracker-height affect the result of tracking when I use IoU tracker.
are the objects bbox resized to [tracker-width, tracker-height] when use IoU tracker ?
In my mind, I think calculation of IoU is based on bbox detected, don’t need to resize.

No, it’s the frame width/height
Refer Gst-nvtracker — DeepStream 6.3 Release documentation

Does that means, in tracker part the input frame (for example: 1920 x 1080) will be resized to (tracker-width, tracker-height) for example (640, 384), and the bboxes will be resized correspondingly ?

Yeah, exactly.

1 Like