Tracker Config for Fast Moving Objects #13404
Replies: 2 comments 1 reply
-
Hello, For tracking fast-moving objects like cars across multiple cameras, adjusting your tracker configuration can indeed help improve performance and accuracy. Here are a few suggestions:
For detailed explanations of each parameter in the tracker configuration file, you can refer to the comments within the YAML file itself, which typically describe their roles and impacts. Implementing these adjustments should help in managing the tracking of fast-moving objects more effectively. |
Beta Was this translation helpful? Give feedback.
-
I have found a solution, custom training helped a lot in increasing the confidence of detection, plus increasing the match_threshold to a high value (10 in my case) helped with fast motion it keeps the track going. Also most important thing was implementing a masking over the frame, i blacken out the surrounding pixels where it was making wrong prediction and only kept the area where the car i want to track will pass through, also added some masked images in the dataset while training, it works well now. |
Beta Was this translation helpful? Give feedback.
-
I have a project to track cars across 5 cameras, My GTX 1650 takes about 280ms to process all 5 frames. So when running on live feed no ID is assigned to the cars sometimes( especially fast moving cars) as it skips through many frames.
I am trying to pass a custom_tracker.yaml file but I am not sure what each parameter does.
And if there is some other better method to do this task please specify.
Beta Was this translation helpful? Give feedback.
All reactions