-
Notifications
You must be signed in to change notification settings - Fork 10
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
If the target disappears for a long time and then reappears, can the algorithm recover it? #20
Comments
Thanks for your thumbs up. The phenomenon you observed is because the long time you mentioned exceeds what the model can allow (determined by But I have two ideas that may be able to handle the situation you mentioned:
My expression may be a bit complicated. If you don't understand it, fell free to reply and discussion. |
@HELLORPG Thank you for your expert opinion, I think the first method is more commonly used and effective in industry, but it has to rely on a strong ReID model. This relies heavily on large-scale data. In constrast, I think the idea of MOTIP is very good because the model can be optimized for e2e and is friendly to actual deployment. I've tried using MOTIP in some other data scenarios (such as MOT in uav perspective). And I found that it may have ID Switch problem. I have an idea, is it possible to pre-train seq_decoder using ReID's dataset to further enhance its ID prediction capabilities? |
I'm sorry for the delay in my responses. I'll be in the hospital for a while (maybe a month or more), so my replies might be slower than usual. Thanks for your understanding and patience.
It should be a promising idea. Just like we can use only one image to train the model (e.g., joint training on CrowdHuman), ReID datasets can also be used for the training. However, I think there will be a lot of engineering details and tricks to be considered. |
Hello, thank you for MCG for open sourcing this amazing MOT work! As the issue mentioned in the title, in a sequence, the target disappears from the camera for a long time and then reappears, I found that the target is treated as a newborn and given a new ID, which does not actually align with real-world usage scenarios.
Can historical identity IDs of disappearing targets be recorded, so that the targets can be found again when they reappear?
The text was updated successfully, but these errors were encountered: