File size: 1,018 Bytes
23d8387 237ca2e 23d8387 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 |
# DaSiamRPN
[Distractor-aware Siamese Networks for Visual Object Tracking](https://arxiv.org/abs/1808.06048)
Note:
- Model source: [opencv/samples/dnn/diasiamrpn_tracker.cpp](https://github.com/opencv/opencv/blob/ceb94d52a104c0c1287a43dfa6ba72705fb78ac1/samples/dnn/dasiamrpn_tracker.cpp#L5-L7)
- Visit https://github.com/foolwood/DaSiamRPN for training details.
## Demo
Run the following command to try the demo:
```shell
# track on camera input
python demo.py
# track on video input
python demo.py --input /path/to/video
```
### Example outputs

## License
All files in this directory are licensed under [Apache 2.0 License](./LICENSE).
## Reference:
- DaSiamRPN Official Repository: https://github.com/foolwood/DaSiamRPN
- Paper: https://arxiv.org/abs/1808.06048
- OpenCV API `TrackerDaSiamRPN` Doc: https://docs.opencv.org/4.x/de/d93/classcv_1_1TrackerDaSiamRPN.html
- OpenCV Sample: https://github.com/opencv/opencv/blob/4.x/samples/dnn/dasiamrpn_tracker.cpp |