├── .gitignore ├── CustomMxOp.py ├── README.md ├── images └── demo-sequences │ └── vot15_bag.7z ├── model ├── model.mat ├── model_dict.pkl ├── mxmodel_bgr-0001.params ├── mxmodel_bgr-symbol.json ├── mxmodel_rgb-0001.params └── mxmodel_rgb-symbol.json ├── run_tracker.py ├── transfer_model.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | test_model.py -------------------------------------------------------------------------------- /CustomMxOp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GarrickLin/py-siamese_fc/HEAD/CustomMxOp.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GarrickLin/py-siamese_fc/HEAD/README.md -------------------------------------------------------------------------------- /images/demo-sequences/vot15_bag.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GarrickLin/py-siamese_fc/HEAD/images/demo-sequences/vot15_bag.7z -------------------------------------------------------------------------------- /model/model.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GarrickLin/py-siamese_fc/HEAD/model/model.mat -------------------------------------------------------------------------------- /model/model_dict.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GarrickLin/py-siamese_fc/HEAD/model/model_dict.pkl -------------------------------------------------------------------------------- /model/mxmodel_bgr-0001.params: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GarrickLin/py-siamese_fc/HEAD/model/mxmodel_bgr-0001.params -------------------------------------------------------------------------------- /model/mxmodel_bgr-symbol.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GarrickLin/py-siamese_fc/HEAD/model/mxmodel_bgr-symbol.json -------------------------------------------------------------------------------- /model/mxmodel_rgb-0001.params: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GarrickLin/py-siamese_fc/HEAD/model/mxmodel_rgb-0001.params -------------------------------------------------------------------------------- /model/mxmodel_rgb-symbol.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GarrickLin/py-siamese_fc/HEAD/model/mxmodel_rgb-symbol.json -------------------------------------------------------------------------------- /run_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GarrickLin/py-siamese_fc/HEAD/run_tracker.py -------------------------------------------------------------------------------- /transfer_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GarrickLin/py-siamese_fc/HEAD/transfer_model.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GarrickLin/py-siamese_fc/HEAD/utils.py --------------------------------------------------------------------------------