├── .gitignore ├── ILSVRC15-curation ├── gen_image_crops_VID.py └── gen_imdb_VID.py ├── LICENSE ├── OTB ├── download_OTB.sh └── unzip.py ├── README.md ├── Tracking ├── __init_paths.py ├── matlab │ ├── run_experiments.m │ └── tracker_SiamFC.m ├── run_SiamFC_VOT.py ├── vot.py └── vot_SiamFC.py ├── Train ├── __init_paths.py ├── model │ └── SiamFC_50_model.pth └── run_Train_SiamFC.py ├── experiments ├── __init__.py └── siamese_fc │ ├── Config.py │ ├── __init__.py │ └── network.py ├── lib ├── DataAugmentation.py ├── Tracking_Utils.py ├── Utils.py ├── VIDDataset.py ├── __init__.py └── eval_utils.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GengZ/siameseFC-pytorch-vot/HEAD/.gitignore -------------------------------------------------------------------------------- /ILSVRC15-curation/gen_image_crops_VID.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GengZ/siameseFC-pytorch-vot/HEAD/ILSVRC15-curation/gen_image_crops_VID.py -------------------------------------------------------------------------------- /ILSVRC15-curation/gen_imdb_VID.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GengZ/siameseFC-pytorch-vot/HEAD/ILSVRC15-curation/gen_imdb_VID.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GengZ/siameseFC-pytorch-vot/HEAD/LICENSE -------------------------------------------------------------------------------- /OTB/download_OTB.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GengZ/siameseFC-pytorch-vot/HEAD/OTB/download_OTB.sh -------------------------------------------------------------------------------- /OTB/unzip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GengZ/siameseFC-pytorch-vot/HEAD/OTB/unzip.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GengZ/siameseFC-pytorch-vot/HEAD/README.md -------------------------------------------------------------------------------- /Tracking/__init_paths.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GengZ/siameseFC-pytorch-vot/HEAD/Tracking/__init_paths.py -------------------------------------------------------------------------------- /Tracking/matlab/run_experiments.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GengZ/siameseFC-pytorch-vot/HEAD/Tracking/matlab/run_experiments.m -------------------------------------------------------------------------------- /Tracking/matlab/tracker_SiamFC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GengZ/siameseFC-pytorch-vot/HEAD/Tracking/matlab/tracker_SiamFC.m -------------------------------------------------------------------------------- /Tracking/run_SiamFC_VOT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GengZ/siameseFC-pytorch-vot/HEAD/Tracking/run_SiamFC_VOT.py -------------------------------------------------------------------------------- /Tracking/vot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GengZ/siameseFC-pytorch-vot/HEAD/Tracking/vot.py -------------------------------------------------------------------------------- /Tracking/vot_SiamFC.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GengZ/siameseFC-pytorch-vot/HEAD/Tracking/vot_SiamFC.py -------------------------------------------------------------------------------- /Train/__init_paths.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GengZ/siameseFC-pytorch-vot/HEAD/Train/__init_paths.py -------------------------------------------------------------------------------- /Train/model/SiamFC_50_model.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GengZ/siameseFC-pytorch-vot/HEAD/Train/model/SiamFC_50_model.pth -------------------------------------------------------------------------------- /Train/run_Train_SiamFC.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GengZ/siameseFC-pytorch-vot/HEAD/Train/run_Train_SiamFC.py -------------------------------------------------------------------------------- /experiments/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /experiments/siamese_fc/Config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GengZ/siameseFC-pytorch-vot/HEAD/experiments/siamese_fc/Config.py -------------------------------------------------------------------------------- /experiments/siamese_fc/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /experiments/siamese_fc/network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GengZ/siameseFC-pytorch-vot/HEAD/experiments/siamese_fc/network.py -------------------------------------------------------------------------------- /lib/DataAugmentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GengZ/siameseFC-pytorch-vot/HEAD/lib/DataAugmentation.py -------------------------------------------------------------------------------- /lib/Tracking_Utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GengZ/siameseFC-pytorch-vot/HEAD/lib/Tracking_Utils.py -------------------------------------------------------------------------------- /lib/Utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GengZ/siameseFC-pytorch-vot/HEAD/lib/Utils.py -------------------------------------------------------------------------------- /lib/VIDDataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GengZ/siameseFC-pytorch-vot/HEAD/lib/VIDDataset.py -------------------------------------------------------------------------------- /lib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/eval_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GengZ/siameseFC-pytorch-vot/HEAD/lib/eval_utils.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | torchvision 2 | opencv-python 3 | six 4 | epdb --------------------------------------------------------------------------------