├── INSTALL.md ├── LICENSE ├── README.md ├── architecture.png ├── bash ├── eval_fcot_on_lasot.sh ├── eval_fcot_on_nfs.sh ├── eval_fcot_on_otb.sh ├── eval_fcot_on_uav.sh ├── eval_fcot_on_vot.sh ├── pack_fcot_results_on_got.sh ├── pack_fcot_results_on_tn.sh ├── run_fcot_on_lasot.sh ├── run_fcot_on_nfs.sh ├── run_fcot_on_otb.sh ├── run_fcot_on_tn.sh ├── run_fcot_on_uav.sh ├── run_fcot_on_vot.sh ├── train_fcot_2stages.sh └── train_fcot_3stages.sh ├── install.sh ├── list.txt ├── ltr ├── __init__.py ├── actors │ ├── __init__.py │ ├── base_actor.py │ ├── fcot_actor.py │ ├── fcot_cls_18_actor.py │ ├── fcot_cls_72_and_reg_init_actor.py │ └── fcot_online_reg_actor.py ├── admin │ ├── __init__.py │ ├── environment.py │ ├── loading.py │ ├── model_constructor.py │ ├── multigpu.py │ ├── settings.py │ ├── stats.py │ └── tensorboard.py ├── data │ ├── __init__.py │ ├── image_loader.py │ ├── loader.py │ ├── processing_fcot.py │ ├── processing_utils.py │ ├── sampler.py │ ├── transforms.py │ └── utils_fcot.py ├── data_specs │ ├── got10k_train_split.txt │ ├── got10k_val_split.txt │ ├── got10k_vot_train_split.txt │ ├── got10k_vot_val_split.txt │ └── lasot_train_split.txt ├── dataset │ ├── __init__.py │ ├── base_dataset.py │ ├── coco_seq.py │ ├── got10k.py │ ├── imagenetvid.py │ ├── lasot.py │ └── tracking_net.py ├── external │ ├── DCNv2 │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── __init__.py │ │ ├── dcn_v2.py │ │ ├── make.sh │ │ ├── setup.py │ │ ├── src │ │ │ ├── cpu │ │ │ │ ├── dcn_v2_cpu.cpp │ │ │ │ └── vision.h │ │ │ ├── cuda │ │ │ │ ├── dcn_v2_cuda.cu │ │ │ │ ├── dcn_v2_im2col_cuda.cu │ │ │ │ ├── dcn_v2_im2col_cuda.h │ │ │ │ ├── dcn_v2_psroi_pooling_cuda.cu │ │ │ │ └── vision.h │ │ │ ├── dcn_v2.h │ │ │ └── vision.cpp │ │ └── test.py │ ├── PreciseRoIPooling │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── _assets │ │ │ └── prroi_visualization.png │ │ ├── pytorch │ │ │ ├── prroi_pool │ │ │ │ ├── .gitignore │ │ │ │ ├── __init__.py │ │ │ │ ├── functional.py │ │ │ │ ├── prroi_pool.py │ │ │ │ └── src │ │ │ │ │ ├── prroi_pooling_gpu.c │ │ │ │ │ ├── prroi_pooling_gpu.h │ │ │ │ │ ├── prroi_pooling_gpu_impl.cu │ │ │ │ │ └── prroi_pooling_gpu_impl.cuh │ │ │ └── tests │ │ │ │ └── test_prroi_pooling2d.py │ │ └── src │ │ │ ├── prroi_pooling_gpu_impl.cu │ │ │ └── prroi_pooling_gpu_impl.cuh │ └── __init__.py ├── models │ ├── __init__.py │ ├── backbone │ │ ├── __init__.py │ │ ├── resnet.py │ │ └── resnet18_vggm.py │ ├── layers │ │ ├── __init__.py │ │ ├── activation.py │ │ ├── blocks.py │ │ ├── distance.py │ │ ├── filter.py │ │ ├── normalization.py │ │ └── transform.py │ ├── loss │ │ ├── __init__.py │ │ ├── target_classification.py │ │ └── target_regression.py │ ├── target_classifier │ │ ├── __init__.py │ │ ├── features.py │ │ ├── initializer.py │ │ ├── linear_filter.py │ │ ├── optimizer.py │ │ └── up_features.py │ ├── target_regression │ │ ├── __init__.py │ │ ├── reg_online_filter.py │ │ └── reg_optimizer.py │ └── tracking │ │ ├── __init__.py │ │ └── fcotnet.py ├── run_training.py ├── train_settings │ ├── __init__.py │ └── fcot │ │ ├── __init__.py │ │ └── fcot.py └── trainers │ ├── __init__.py │ ├── base_trainer.py │ └── ltr_fcot_trainer.py ├── models └── __init__.py └── pytracking ├── __init__.py ├── benchmarks ├── __init__.py ├── ar_benchmark.py ├── eao_benchmark.py └── ope_benchmark.py ├── evaluation ├── __init__.py ├── data.py ├── environment.py ├── got10kdataset.py ├── lasotdataset.py ├── mobifacedataset.py ├── nfsdataset.py ├── otbdataset.py ├── running.py ├── tpldataset.py ├── tracker.py ├── trackingnetdataset.py ├── uavdataset.py └── votdataset.py ├── features ├── __init__.py ├── augmentation.py ├── color.py ├── deep.py ├── extractor.py ├── featurebase.py ├── net_wrappers.py ├── preprocessing.py └── util.py ├── libs ├── __init__.py ├── complex.py ├── dcf.py ├── fourier.py ├── operation.py ├── optimization.py ├── tensordict.py └── tensorlist.py ├── parameter ├── __init__.py └── fcot │ ├── __init__.py │ ├── fcot_lasot.py │ ├── fcot_nfs.py │ ├── fcot_otb.py │ ├── fcot_trackingnet.py │ ├── fcot_uav.py │ └── fcot_vot.py ├── run_evaluation.py ├── run_tracker.py ├── run_video.py ├── run_vot.py ├── run_webcam.py ├── tracker ├── __init__.py ├── base │ ├── __init__.py │ └── basetracker.py └── fcot │ ├── __init__.py │ └── fcot.py ├── util_script ├── pack_got10k_results.py └── pack_trackingnet_results.py ├── utils ├── __init__.py ├── bbox.py ├── concat_imgs.py ├── convert_vot_anno_to_rect.py ├── gdrive_download ├── imgs2vid.py ├── loading.py ├── params.py ├── plotting.py ├── vis_results.py ├── visdom.py └── vot_utils │ ├── __init__.py │ ├── c_region.pxd │ ├── misc.py │ ├── region.pyx │ ├── setup.py │ ├── src │ ├── buffer.h │ ├── region.c │ └── region.h │ └── statistics.py └── visualization ├── __init__.py ├── draw_eao.py ├── draw_f1.py ├── draw_success_precision.py └── draw_utils.py /INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/INSTALL.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/README.md -------------------------------------------------------------------------------- /architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/architecture.png -------------------------------------------------------------------------------- /bash/eval_fcot_on_lasot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/bash/eval_fcot_on_lasot.sh -------------------------------------------------------------------------------- /bash/eval_fcot_on_nfs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/bash/eval_fcot_on_nfs.sh -------------------------------------------------------------------------------- /bash/eval_fcot_on_otb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/bash/eval_fcot_on_otb.sh -------------------------------------------------------------------------------- /bash/eval_fcot_on_uav.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/bash/eval_fcot_on_uav.sh -------------------------------------------------------------------------------- /bash/eval_fcot_on_vot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/bash/eval_fcot_on_vot.sh -------------------------------------------------------------------------------- /bash/pack_fcot_results_on_got.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/bash/pack_fcot_results_on_got.sh -------------------------------------------------------------------------------- /bash/pack_fcot_results_on_tn.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/bash/pack_fcot_results_on_tn.sh -------------------------------------------------------------------------------- /bash/run_fcot_on_lasot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/bash/run_fcot_on_lasot.sh -------------------------------------------------------------------------------- /bash/run_fcot_on_nfs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/bash/run_fcot_on_nfs.sh -------------------------------------------------------------------------------- /bash/run_fcot_on_otb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/bash/run_fcot_on_otb.sh -------------------------------------------------------------------------------- /bash/run_fcot_on_tn.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/bash/run_fcot_on_tn.sh -------------------------------------------------------------------------------- /bash/run_fcot_on_uav.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/bash/run_fcot_on_uav.sh -------------------------------------------------------------------------------- /bash/run_fcot_on_vot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/bash/run_fcot_on_vot.sh -------------------------------------------------------------------------------- /bash/train_fcot_2stages.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/bash/train_fcot_2stages.sh -------------------------------------------------------------------------------- /bash/train_fcot_3stages.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/bash/train_fcot_3stages.sh -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/install.sh -------------------------------------------------------------------------------- /list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/list.txt -------------------------------------------------------------------------------- /ltr/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/ltr/__init__.py -------------------------------------------------------------------------------- /ltr/actors/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/ltr/actors/__init__.py -------------------------------------------------------------------------------- /ltr/actors/base_actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/ltr/actors/base_actor.py -------------------------------------------------------------------------------- /ltr/actors/fcot_actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/ltr/actors/fcot_actor.py -------------------------------------------------------------------------------- /ltr/actors/fcot_cls_18_actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/ltr/actors/fcot_cls_18_actor.py -------------------------------------------------------------------------------- /ltr/actors/fcot_cls_72_and_reg_init_actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/ltr/actors/fcot_cls_72_and_reg_init_actor.py -------------------------------------------------------------------------------- /ltr/actors/fcot_online_reg_actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/ltr/actors/fcot_online_reg_actor.py -------------------------------------------------------------------------------- /ltr/admin/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ltr/admin/environment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/ltr/admin/environment.py -------------------------------------------------------------------------------- /ltr/admin/loading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/ltr/admin/loading.py -------------------------------------------------------------------------------- /ltr/admin/model_constructor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/ltr/admin/model_constructor.py -------------------------------------------------------------------------------- /ltr/admin/multigpu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/ltr/admin/multigpu.py -------------------------------------------------------------------------------- /ltr/admin/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/ltr/admin/settings.py -------------------------------------------------------------------------------- /ltr/admin/stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/ltr/admin/stats.py -------------------------------------------------------------------------------- /ltr/admin/tensorboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/ltr/admin/tensorboard.py -------------------------------------------------------------------------------- /ltr/data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/ltr/data/__init__.py -------------------------------------------------------------------------------- /ltr/data/image_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/ltr/data/image_loader.py -------------------------------------------------------------------------------- /ltr/data/loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/ltr/data/loader.py -------------------------------------------------------------------------------- /ltr/data/processing_fcot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/ltr/data/processing_fcot.py -------------------------------------------------------------------------------- /ltr/data/processing_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/ltr/data/processing_utils.py -------------------------------------------------------------------------------- /ltr/data/sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/ltr/data/sampler.py -------------------------------------------------------------------------------- /ltr/data/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/ltr/data/transforms.py -------------------------------------------------------------------------------- /ltr/data/utils_fcot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/ltr/data/utils_fcot.py -------------------------------------------------------------------------------- /ltr/data_specs/got10k_train_split.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/ltr/data_specs/got10k_train_split.txt -------------------------------------------------------------------------------- /ltr/data_specs/got10k_val_split.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/ltr/data_specs/got10k_val_split.txt -------------------------------------------------------------------------------- /ltr/data_specs/got10k_vot_train_split.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/ltr/data_specs/got10k_vot_train_split.txt -------------------------------------------------------------------------------- /ltr/data_specs/got10k_vot_val_split.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/ltr/data_specs/got10k_vot_val_split.txt -------------------------------------------------------------------------------- /ltr/data_specs/lasot_train_split.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/ltr/data_specs/lasot_train_split.txt -------------------------------------------------------------------------------- /ltr/dataset/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/ltr/dataset/__init__.py -------------------------------------------------------------------------------- /ltr/dataset/base_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/ltr/dataset/base_dataset.py -------------------------------------------------------------------------------- /ltr/dataset/coco_seq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/ltr/dataset/coco_seq.py -------------------------------------------------------------------------------- /ltr/dataset/got10k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/ltr/dataset/got10k.py -------------------------------------------------------------------------------- /ltr/dataset/imagenetvid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/ltr/dataset/imagenetvid.py -------------------------------------------------------------------------------- /ltr/dataset/lasot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/ltr/dataset/lasot.py -------------------------------------------------------------------------------- /ltr/dataset/tracking_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/ltr/dataset/tracking_net.py -------------------------------------------------------------------------------- /ltr/external/DCNv2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/ltr/external/DCNv2/.gitignore -------------------------------------------------------------------------------- /ltr/external/DCNv2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/ltr/external/DCNv2/LICENSE -------------------------------------------------------------------------------- /ltr/external/DCNv2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/ltr/external/DCNv2/README.md -------------------------------------------------------------------------------- /ltr/external/DCNv2/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ltr/external/DCNv2/dcn_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/ltr/external/DCNv2/dcn_v2.py -------------------------------------------------------------------------------- /ltr/external/DCNv2/make.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | python setup.py build develop 3 | -------------------------------------------------------------------------------- /ltr/external/DCNv2/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/ltr/external/DCNv2/setup.py -------------------------------------------------------------------------------- /ltr/external/DCNv2/src/cpu/dcn_v2_cpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/ltr/external/DCNv2/src/cpu/dcn_v2_cpu.cpp -------------------------------------------------------------------------------- /ltr/external/DCNv2/src/cpu/vision.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/ltr/external/DCNv2/src/cpu/vision.h -------------------------------------------------------------------------------- /ltr/external/DCNv2/src/cuda/dcn_v2_cuda.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/ltr/external/DCNv2/src/cuda/dcn_v2_cuda.cu -------------------------------------------------------------------------------- /ltr/external/DCNv2/src/cuda/dcn_v2_im2col_cuda.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/ltr/external/DCNv2/src/cuda/dcn_v2_im2col_cuda.cu -------------------------------------------------------------------------------- /ltr/external/DCNv2/src/cuda/dcn_v2_im2col_cuda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/ltr/external/DCNv2/src/cuda/dcn_v2_im2col_cuda.h -------------------------------------------------------------------------------- /ltr/external/DCNv2/src/cuda/dcn_v2_psroi_pooling_cuda.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/ltr/external/DCNv2/src/cuda/dcn_v2_psroi_pooling_cuda.cu -------------------------------------------------------------------------------- /ltr/external/DCNv2/src/cuda/vision.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/ltr/external/DCNv2/src/cuda/vision.h -------------------------------------------------------------------------------- /ltr/external/DCNv2/src/dcn_v2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/ltr/external/DCNv2/src/dcn_v2.h -------------------------------------------------------------------------------- /ltr/external/DCNv2/src/vision.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/ltr/external/DCNv2/src/vision.cpp -------------------------------------------------------------------------------- /ltr/external/DCNv2/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/ltr/external/DCNv2/test.py -------------------------------------------------------------------------------- /ltr/external/PreciseRoIPooling/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/ltr/external/PreciseRoIPooling/.gitignore -------------------------------------------------------------------------------- /ltr/external/PreciseRoIPooling/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/ltr/external/PreciseRoIPooling/LICENSE -------------------------------------------------------------------------------- /ltr/external/PreciseRoIPooling/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/ltr/external/PreciseRoIPooling/README.md -------------------------------------------------------------------------------- /ltr/external/PreciseRoIPooling/_assets/prroi_visualization.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/ltr/external/PreciseRoIPooling/_assets/prroi_visualization.png -------------------------------------------------------------------------------- /ltr/external/PreciseRoIPooling/pytorch/prroi_pool/.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | /_prroi_pooling 3 | -------------------------------------------------------------------------------- /ltr/external/PreciseRoIPooling/pytorch/prroi_pool/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/ltr/external/PreciseRoIPooling/pytorch/prroi_pool/__init__.py -------------------------------------------------------------------------------- /ltr/external/PreciseRoIPooling/pytorch/prroi_pool/functional.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/ltr/external/PreciseRoIPooling/pytorch/prroi_pool/functional.py -------------------------------------------------------------------------------- /ltr/external/PreciseRoIPooling/pytorch/prroi_pool/prroi_pool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/ltr/external/PreciseRoIPooling/pytorch/prroi_pool/prroi_pool.py -------------------------------------------------------------------------------- /ltr/external/PreciseRoIPooling/pytorch/prroi_pool/src/prroi_pooling_gpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/ltr/external/PreciseRoIPooling/pytorch/prroi_pool/src/prroi_pooling_gpu.c -------------------------------------------------------------------------------- /ltr/external/PreciseRoIPooling/pytorch/prroi_pool/src/prroi_pooling_gpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/ltr/external/PreciseRoIPooling/pytorch/prroi_pool/src/prroi_pooling_gpu.h -------------------------------------------------------------------------------- /ltr/external/PreciseRoIPooling/pytorch/prroi_pool/src/prroi_pooling_gpu_impl.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/ltr/external/PreciseRoIPooling/pytorch/prroi_pool/src/prroi_pooling_gpu_impl.cu -------------------------------------------------------------------------------- /ltr/external/PreciseRoIPooling/pytorch/prroi_pool/src/prroi_pooling_gpu_impl.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/ltr/external/PreciseRoIPooling/pytorch/prroi_pool/src/prroi_pooling_gpu_impl.cuh -------------------------------------------------------------------------------- /ltr/external/PreciseRoIPooling/pytorch/tests/test_prroi_pooling2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/ltr/external/PreciseRoIPooling/pytorch/tests/test_prroi_pooling2d.py -------------------------------------------------------------------------------- /ltr/external/PreciseRoIPooling/src/prroi_pooling_gpu_impl.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/ltr/external/PreciseRoIPooling/src/prroi_pooling_gpu_impl.cu -------------------------------------------------------------------------------- /ltr/external/PreciseRoIPooling/src/prroi_pooling_gpu_impl.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/ltr/external/PreciseRoIPooling/src/prroi_pooling_gpu_impl.cuh -------------------------------------------------------------------------------- /ltr/external/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ltr/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ltr/models/backbone/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/ltr/models/backbone/__init__.py -------------------------------------------------------------------------------- /ltr/models/backbone/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/ltr/models/backbone/resnet.py -------------------------------------------------------------------------------- /ltr/models/backbone/resnet18_vggm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/ltr/models/backbone/resnet18_vggm.py -------------------------------------------------------------------------------- /ltr/models/layers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ltr/models/layers/activation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/ltr/models/layers/activation.py -------------------------------------------------------------------------------- /ltr/models/layers/blocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/ltr/models/layers/blocks.py -------------------------------------------------------------------------------- /ltr/models/layers/distance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/ltr/models/layers/distance.py -------------------------------------------------------------------------------- /ltr/models/layers/filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/ltr/models/layers/filter.py -------------------------------------------------------------------------------- /ltr/models/layers/normalization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/ltr/models/layers/normalization.py -------------------------------------------------------------------------------- /ltr/models/layers/transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/ltr/models/layers/transform.py -------------------------------------------------------------------------------- /ltr/models/loss/__init__.py: -------------------------------------------------------------------------------- 1 | from .target_classification import LBHinge 2 | -------------------------------------------------------------------------------- /ltr/models/loss/target_classification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/ltr/models/loss/target_classification.py -------------------------------------------------------------------------------- /ltr/models/loss/target_regression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/ltr/models/loss/target_regression.py -------------------------------------------------------------------------------- /ltr/models/target_classifier/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/ltr/models/target_classifier/__init__.py -------------------------------------------------------------------------------- /ltr/models/target_classifier/features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/ltr/models/target_classifier/features.py -------------------------------------------------------------------------------- /ltr/models/target_classifier/initializer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/ltr/models/target_classifier/initializer.py -------------------------------------------------------------------------------- /ltr/models/target_classifier/linear_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/ltr/models/target_classifier/linear_filter.py -------------------------------------------------------------------------------- /ltr/models/target_classifier/optimizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/ltr/models/target_classifier/optimizer.py -------------------------------------------------------------------------------- /ltr/models/target_classifier/up_features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/ltr/models/target_classifier/up_features.py -------------------------------------------------------------------------------- /ltr/models/target_regression/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ltr/models/target_regression/reg_online_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/ltr/models/target_regression/reg_online_filter.py -------------------------------------------------------------------------------- /ltr/models/target_regression/reg_optimizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/ltr/models/target_regression/reg_optimizer.py -------------------------------------------------------------------------------- /ltr/models/tracking/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ltr/models/tracking/fcotnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/ltr/models/tracking/fcotnet.py -------------------------------------------------------------------------------- /ltr/run_training.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/ltr/run_training.py -------------------------------------------------------------------------------- /ltr/train_settings/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ltr/train_settings/fcot/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ltr/train_settings/fcot/fcot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/ltr/train_settings/fcot/fcot.py -------------------------------------------------------------------------------- /ltr/trainers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/ltr/trainers/__init__.py -------------------------------------------------------------------------------- /ltr/trainers/base_trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/ltr/trainers/base_trainer.py -------------------------------------------------------------------------------- /ltr/trainers/ltr_fcot_trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/ltr/trainers/ltr_fcot_trainer.py -------------------------------------------------------------------------------- /models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/models/__init__.py -------------------------------------------------------------------------------- /pytracking/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/pytracking/__init__.py -------------------------------------------------------------------------------- /pytracking/benchmarks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/pytracking/benchmarks/__init__.py -------------------------------------------------------------------------------- /pytracking/benchmarks/ar_benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/pytracking/benchmarks/ar_benchmark.py -------------------------------------------------------------------------------- /pytracking/benchmarks/eao_benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/pytracking/benchmarks/eao_benchmark.py -------------------------------------------------------------------------------- /pytracking/benchmarks/ope_benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/pytracking/benchmarks/ope_benchmark.py -------------------------------------------------------------------------------- /pytracking/evaluation/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/pytracking/evaluation/__init__.py -------------------------------------------------------------------------------- /pytracking/evaluation/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/pytracking/evaluation/data.py -------------------------------------------------------------------------------- /pytracking/evaluation/environment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/pytracking/evaluation/environment.py -------------------------------------------------------------------------------- /pytracking/evaluation/got10kdataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/pytracking/evaluation/got10kdataset.py -------------------------------------------------------------------------------- /pytracking/evaluation/lasotdataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/pytracking/evaluation/lasotdataset.py -------------------------------------------------------------------------------- /pytracking/evaluation/mobifacedataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/pytracking/evaluation/mobifacedataset.py -------------------------------------------------------------------------------- /pytracking/evaluation/nfsdataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/pytracking/evaluation/nfsdataset.py -------------------------------------------------------------------------------- /pytracking/evaluation/otbdataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/pytracking/evaluation/otbdataset.py -------------------------------------------------------------------------------- /pytracking/evaluation/running.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/pytracking/evaluation/running.py -------------------------------------------------------------------------------- /pytracking/evaluation/tpldataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/pytracking/evaluation/tpldataset.py -------------------------------------------------------------------------------- /pytracking/evaluation/tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/pytracking/evaluation/tracker.py -------------------------------------------------------------------------------- /pytracking/evaluation/trackingnetdataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/pytracking/evaluation/trackingnetdataset.py -------------------------------------------------------------------------------- /pytracking/evaluation/uavdataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/pytracking/evaluation/uavdataset.py -------------------------------------------------------------------------------- /pytracking/evaluation/votdataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/pytracking/evaluation/votdataset.py -------------------------------------------------------------------------------- /pytracking/features/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pytracking/features/augmentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/pytracking/features/augmentation.py -------------------------------------------------------------------------------- /pytracking/features/color.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/pytracking/features/color.py -------------------------------------------------------------------------------- /pytracking/features/deep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/pytracking/features/deep.py -------------------------------------------------------------------------------- /pytracking/features/extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/pytracking/features/extractor.py -------------------------------------------------------------------------------- /pytracking/features/featurebase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/pytracking/features/featurebase.py -------------------------------------------------------------------------------- /pytracking/features/net_wrappers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/pytracking/features/net_wrappers.py -------------------------------------------------------------------------------- /pytracking/features/preprocessing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/pytracking/features/preprocessing.py -------------------------------------------------------------------------------- /pytracking/features/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/pytracking/features/util.py -------------------------------------------------------------------------------- /pytracking/libs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/pytracking/libs/__init__.py -------------------------------------------------------------------------------- /pytracking/libs/complex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/pytracking/libs/complex.py -------------------------------------------------------------------------------- /pytracking/libs/dcf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/pytracking/libs/dcf.py -------------------------------------------------------------------------------- /pytracking/libs/fourier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/pytracking/libs/fourier.py -------------------------------------------------------------------------------- /pytracking/libs/operation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/pytracking/libs/operation.py -------------------------------------------------------------------------------- /pytracking/libs/optimization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/pytracking/libs/optimization.py -------------------------------------------------------------------------------- /pytracking/libs/tensordict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/pytracking/libs/tensordict.py -------------------------------------------------------------------------------- /pytracking/libs/tensorlist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/pytracking/libs/tensorlist.py -------------------------------------------------------------------------------- /pytracking/parameter/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pytracking/parameter/fcot/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pytracking/parameter/fcot/fcot_lasot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/pytracking/parameter/fcot/fcot_lasot.py -------------------------------------------------------------------------------- /pytracking/parameter/fcot/fcot_nfs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/pytracking/parameter/fcot/fcot_nfs.py -------------------------------------------------------------------------------- /pytracking/parameter/fcot/fcot_otb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/pytracking/parameter/fcot/fcot_otb.py -------------------------------------------------------------------------------- /pytracking/parameter/fcot/fcot_trackingnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/pytracking/parameter/fcot/fcot_trackingnet.py -------------------------------------------------------------------------------- /pytracking/parameter/fcot/fcot_uav.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/pytracking/parameter/fcot/fcot_uav.py -------------------------------------------------------------------------------- /pytracking/parameter/fcot/fcot_vot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/pytracking/parameter/fcot/fcot_vot.py -------------------------------------------------------------------------------- /pytracking/run_evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/pytracking/run_evaluation.py -------------------------------------------------------------------------------- /pytracking/run_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/pytracking/run_tracker.py -------------------------------------------------------------------------------- /pytracking/run_video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/pytracking/run_video.py -------------------------------------------------------------------------------- /pytracking/run_vot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/pytracking/run_vot.py -------------------------------------------------------------------------------- /pytracking/run_webcam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/pytracking/run_webcam.py -------------------------------------------------------------------------------- /pytracking/tracker/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pytracking/tracker/base/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/pytracking/tracker/base/__init__.py -------------------------------------------------------------------------------- /pytracking/tracker/base/basetracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/pytracking/tracker/base/basetracker.py -------------------------------------------------------------------------------- /pytracking/tracker/fcot/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/pytracking/tracker/fcot/__init__.py -------------------------------------------------------------------------------- /pytracking/tracker/fcot/fcot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/pytracking/tracker/fcot/fcot.py -------------------------------------------------------------------------------- /pytracking/util_script/pack_got10k_results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/pytracking/util_script/pack_got10k_results.py -------------------------------------------------------------------------------- /pytracking/util_script/pack_trackingnet_results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/pytracking/util_script/pack_trackingnet_results.py -------------------------------------------------------------------------------- /pytracking/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/pytracking/utils/__init__.py -------------------------------------------------------------------------------- /pytracking/utils/bbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/pytracking/utils/bbox.py -------------------------------------------------------------------------------- /pytracking/utils/concat_imgs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/pytracking/utils/concat_imgs.py -------------------------------------------------------------------------------- /pytracking/utils/convert_vot_anno_to_rect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/pytracking/utils/convert_vot_anno_to_rect.py -------------------------------------------------------------------------------- /pytracking/utils/gdrive_download: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/pytracking/utils/gdrive_download -------------------------------------------------------------------------------- /pytracking/utils/imgs2vid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/pytracking/utils/imgs2vid.py -------------------------------------------------------------------------------- /pytracking/utils/loading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/pytracking/utils/loading.py -------------------------------------------------------------------------------- /pytracking/utils/params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/pytracking/utils/params.py -------------------------------------------------------------------------------- /pytracking/utils/plotting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/pytracking/utils/plotting.py -------------------------------------------------------------------------------- /pytracking/utils/vis_results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/pytracking/utils/vis_results.py -------------------------------------------------------------------------------- /pytracking/utils/visdom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/pytracking/utils/visdom.py -------------------------------------------------------------------------------- /pytracking/utils/vot_utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/pytracking/utils/vot_utils/__init__.py -------------------------------------------------------------------------------- /pytracking/utils/vot_utils/c_region.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/pytracking/utils/vot_utils/c_region.pxd -------------------------------------------------------------------------------- /pytracking/utils/vot_utils/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/pytracking/utils/vot_utils/misc.py -------------------------------------------------------------------------------- /pytracking/utils/vot_utils/region.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/pytracking/utils/vot_utils/region.pyx -------------------------------------------------------------------------------- /pytracking/utils/vot_utils/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/pytracking/utils/vot_utils/setup.py -------------------------------------------------------------------------------- /pytracking/utils/vot_utils/src/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/pytracking/utils/vot_utils/src/buffer.h -------------------------------------------------------------------------------- /pytracking/utils/vot_utils/src/region.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/pytracking/utils/vot_utils/src/region.c -------------------------------------------------------------------------------- /pytracking/utils/vot_utils/src/region.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/pytracking/utils/vot_utils/src/region.h -------------------------------------------------------------------------------- /pytracking/utils/vot_utils/statistics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/pytracking/utils/vot_utils/statistics.py -------------------------------------------------------------------------------- /pytracking/visualization/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/pytracking/visualization/__init__.py -------------------------------------------------------------------------------- /pytracking/visualization/draw_eao.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/pytracking/visualization/draw_eao.py -------------------------------------------------------------------------------- /pytracking/visualization/draw_f1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/pytracking/visualization/draw_f1.py -------------------------------------------------------------------------------- /pytracking/visualization/draw_success_precision.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/pytracking/visualization/draw_success_precision.py -------------------------------------------------------------------------------- /pytracking/visualization/draw_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MCG-NJU/FCOT/HEAD/pytracking/visualization/draw_utils.py --------------------------------------------------------------------------------