-
Notifications
You must be signed in to change notification settings - Fork 58
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Could we use deepsort to improve the result of detection ? #20
Comments
Yes. Deepsort employs Kalman filtering to predict the positions of bounding boxes from previous frames in the current frame. A track target is only discarded if it has been consistently missed multiple times. In offline processing, for targets that have been intermittently missed, you can utilize the Kalman filter's predictions to complement the detection results. |
@pmj110119 Thank you for your help so much! |
You don't need to train specifically for tracking tasks, you can use them directly. |
could you give me a hint, which func should I use ? Thank you so much. |
My task is use yolox to run object detect with YoloX, instead of tracking.
I trained yolox on many images with bboxes of car, then run car detection on a video.
But some of the frames are missing, may I use deepsort method to improve(postprocessing or offline or online?) the result of detection?
For example, predict the bbox when Yolox could not detect any car bbox in a frame (actually there is
car
)Thanks.
The text was updated successfully, but these errors were encountered: