-
Notifications
You must be signed in to change notification settings - Fork 176
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
how to test own dataset by multi-template? #195
Comments
You can also use the experiments/siamfcpp/test/vot/siamfcpp_alexnet-multi_temp.yaml in the sot_video.py. Just change the config file path to adopt the multi_temp pipeline. |
I saw 'self._state['features'] = [self._state['features']] *self._hyper_params['mem_len']' in 'videoanalyst/pipeline/tracker_impl/siamfcpp_track_multi_temp.py', multi_temp only use singe temp to multiple men_len directly, and these templates did not update anymore. So these templates are the same, why did this? |
The update process with the new feature is here, you can uncomment it to enable this function. https://github.com/MegviiDetection/video_analyst/blob/f4d1bccb1c698961fed3cb70808f1177fab13bdd/videoanalyst/pipeline/tracker_impl/siamfcpp_track_multi_temp.py#L154 |
thanks a lot~ another question, if i want to track multi objects, can i put multi object templates into a template pool, then do correlation operation synchronizely in a minibatch. |
Yes, this is the way while training the network. |
Hello, could you please explain how to track multi objects in details? Thanks a lot. |
i want to test my own dataset by multi-template, but i found only single template can be select in './demo/main/video/sot_video.py'.
'python3 ./main/test.py --config 'experiments/siamfcpp/test/vot/siamfcpp_alexnet-multi_temp.yaml' ' can use multi-temp but only for open-dataset.
The text was updated successfully, but these errors were encountered: