Skip to content
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

Open
le02146 opened this issue Sep 8, 2023 · 4 comments
Open

Could we use deepsort to improve the result of detection ? #20

le02146 opened this issue Sep 8, 2023 · 4 comments

Comments

@le02146
Copy link

le02146 commented Sep 8, 2023

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.

@pmj110119
Copy link
Owner

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.

@le02146
Copy link
Author

le02146 commented Sep 8, 2023

@pmj110119 Thank you for your help so much!
My knowledge limits to object detection on images.
If I want to run offline processing for Yolox detection results of videos, should the Kalman filter or deepsort be trained on a video tracking dataset?

@pmj110119
Copy link
Owner

pmj110119 commented Sep 13, 2023

You don't need to train specifically for tracking tasks, you can use them directly.

@le02146
Copy link
Author

le02146 commented Sep 17, 2023

could you give me a hint, which func should I use ? Thank you so much.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants