Hello there,
I have a question about how object trackers work.
To provide some context, let me briefly explain how my code works:
My yolov5n operates at a maximum of 21 FPS. To minimize latency issues, the RGB camera operates at 20 FPS. We want to use an Object Tracker to reduce false positive detections by not tracking objects that are younger than a few frames.
So, my questions are:
Does the ZERO_TERM_COLOR_HISTOGRAM tracker type provide some tracking information between detection instances? To elaborate, if I have 3 consecutive frames and an object is detected in the first and third frames, does the tracker give ROI information in the second frame?
When does the Tracker set the object status as LOST? Is it when it doesn't get object coordinates from the detector, or are there some other conditions?
How many frames pass between the LOST and REMOVED statuses?
Thank you, Andrzej