├── INSTALL.md ├── MODEL_ZOO.md ├── README.md ├── TRAIN.md ├── experiments ├── siamban_r50_l234_dwxcorr │ └── 5_union_ban_l234.yaml ├── siammask_r50_l3 │ └── 5_union_mask_l3.yaml ├── siamrpn_alex_dwxcorr │ └── 5_union_rpn.yaml └── siamrpn_r50_l234_dwxcorr │ └── 5_union_rpnpp_l234.yaml ├── pysot ├── __init__.py ├── core │ ├── __init__.py │ ├── config.py │ └── xcorr.py ├── datasets │ ├── __init__.py │ ├── anchor_builder.py │ ├── anchor_target.py │ ├── augmentation.py │ ├── dataset.py │ └── point_target.py ├── models │ ├── __init__.py │ ├── backbone │ │ ├── __init__.py │ │ ├── alexnet.py │ │ ├── mobile_v2.py │ │ └── resnet_atrous.py │ ├── head │ │ ├── __init__.py │ │ ├── ban.py │ │ ├── mask.py │ │ └── rpn.py │ ├── init_weight.py │ ├── iou_loss.py │ ├── loss.py │ ├── model_builder.py │ └── neck │ │ ├── __init__.py │ │ └── neck.py ├── tracker │ ├── __init__.py │ ├── base_tracker.py │ ├── siamban_tracker.py │ ├── siammask_tracker.py │ ├── siamrpn_tracker.py │ ├── siamrpnlt_tracker.py │ └── tracker_builder.py └── utils │ ├── __init__.py │ ├── anchor.py │ ├── average_meter.py │ ├── bbox.py │ ├── bbox_train.py │ ├── distributed.py │ ├── log_helper.py │ ├── lr_scheduler.py │ ├── misc.py │ ├── model_load.py │ ├── my_visdom.py │ └── point.py ├── requirements.txt ├── setup.py ├── shell ├── __init__.py ├── eval.sh ├── finetune.sh ├── run_eval.py ├── run_finetune.py ├── run_test.py ├── run_train.py ├── test_eval.sh ├── train.sh ├── train_half.sh ├── union.py └── union.sh ├── test_json ├── CVPR13.json ├── GOT-10k.json ├── LaSOT.json ├── NFS240.json ├── NFS30.json ├── OTB100.json ├── OTB50.json ├── TrackingNet.json ├── UAV123.json ├── UAV20L.json ├── VOT2016.json ├── VOT2018-LT.json ├── VOT2018.json └── VOT2019.json ├── toolkit ├── __init__.py ├── datasets │ ├── __init__.py │ ├── dataset.py │ ├── got10k.py │ ├── lasot.py │ ├── nfs.py │ ├── otb.py │ ├── trackingnet.py │ ├── uav.py │ ├── video.py │ └── vot.py ├── evaluation │ ├── __init__.py │ ├── ar_benchmark.py │ ├── eao_benchmark.py │ ├── f1_benchmark.py │ └── ope_benchmark.py ├── utils │ ├── __init__.py │ ├── c_region.pxd │ ├── misc.py │ ├── region.c │ ├── region.pyx │ ├── 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 ├── tools ├── demo.py ├── eval.py ├── hp_search.py ├── test.py ├── train.py ├── train_half.py ├── train_half_single_gpu.py └── tune.py ├── training_dataset ├── coco │ ├── gen_json.py │ ├── par_crop.py │ ├── pycocotools │ │ ├── Makefile │ │ ├── __init__.py │ │ ├── _mask.pyx │ │ ├── coco.py │ │ ├── cocoeval.py │ │ ├── common │ │ │ ├── gason.cpp │ │ │ ├── gason.h │ │ │ ├── maskApi.c │ │ │ └── maskApi.h │ │ ├── mask.py │ │ └── setup.py │ ├── readme.md │ └── visual.py ├── det │ ├── gen_json.py │ ├── par_crop.py │ ├── readme.md │ └── visual.py ├── vid │ ├── gen_json.py │ ├── par_crop.py │ ├── parse_vid.py │ ├── readme.md │ └── visual.py └── yt_bb │ ├── checknum.py │ ├── gen_json.py │ ├── par_crop.py │ ├── readme.md │ └── visual.py └── vot_iter ├── __init__.py ├── tracker_SiamRPNpp.m ├── vot.py └── vot_iter.py /INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1085052159/PysotPlus/HEAD/INSTALL.md -------------------------------------------------------------------------------- /MODEL_ZOO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1085052159/PysotPlus/HEAD/MODEL_ZOO.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1085052159/PysotPlus/HEAD/README.md -------------------------------------------------------------------------------- /TRAIN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1085052159/PysotPlus/HEAD/TRAIN.md -------------------------------------------------------------------------------- /experiments/siamban_r50_l234_dwxcorr/5_union_ban_l234.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1085052159/PysotPlus/HEAD/experiments/siamban_r50_l234_dwxcorr/5_union_ban_l234.yaml -------------------------------------------------------------------------------- /experiments/siammask_r50_l3/5_union_mask_l3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1085052159/PysotPlus/HEAD/experiments/siammask_r50_l3/5_union_mask_l3.yaml -------------------------------------------------------------------------------- /experiments/siamrpn_alex_dwxcorr/5_union_rpn.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1085052159/PysotPlus/HEAD/experiments/siamrpn_alex_dwxcorr/5_union_rpn.yaml -------------------------------------------------------------------------------- /experiments/siamrpn_r50_l234_dwxcorr/5_union_rpnpp_l234.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1085052159/PysotPlus/HEAD/experiments/siamrpn_r50_l234_dwxcorr/5_union_rpnpp_l234.yaml -------------------------------------------------------------------------------- /pysot/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pysot/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pysot/core/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1085052159/PysotPlus/HEAD/pysot/core/config.py -------------------------------------------------------------------------------- /pysot/core/xcorr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1085052159/PysotPlus/HEAD/pysot/core/xcorr.py -------------------------------------------------------------------------------- /pysot/datasets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pysot/datasets/anchor_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1085052159/PysotPlus/HEAD/pysot/datasets/anchor_builder.py -------------------------------------------------------------------------------- /pysot/datasets/anchor_target.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1085052159/PysotPlus/HEAD/pysot/datasets/anchor_target.py -------------------------------------------------------------------------------- /pysot/datasets/augmentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1085052159/PysotPlus/HEAD/pysot/datasets/augmentation.py -------------------------------------------------------------------------------- /pysot/datasets/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1085052159/PysotPlus/HEAD/pysot/datasets/dataset.py -------------------------------------------------------------------------------- /pysot/datasets/point_target.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1085052159/PysotPlus/HEAD/pysot/datasets/point_target.py -------------------------------------------------------------------------------- /pysot/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pysot/models/backbone/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1085052159/PysotPlus/HEAD/pysot/models/backbone/__init__.py -------------------------------------------------------------------------------- /pysot/models/backbone/alexnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1085052159/PysotPlus/HEAD/pysot/models/backbone/alexnet.py -------------------------------------------------------------------------------- /pysot/models/backbone/mobile_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1085052159/PysotPlus/HEAD/pysot/models/backbone/mobile_v2.py -------------------------------------------------------------------------------- /pysot/models/backbone/resnet_atrous.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1085052159/PysotPlus/HEAD/pysot/models/backbone/resnet_atrous.py -------------------------------------------------------------------------------- /pysot/models/head/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1085052159/PysotPlus/HEAD/pysot/models/head/__init__.py -------------------------------------------------------------------------------- /pysot/models/head/ban.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1085052159/PysotPlus/HEAD/pysot/models/head/ban.py -------------------------------------------------------------------------------- /pysot/models/head/mask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1085052159/PysotPlus/HEAD/pysot/models/head/mask.py -------------------------------------------------------------------------------- /pysot/models/head/rpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1085052159/PysotPlus/HEAD/pysot/models/head/rpn.py -------------------------------------------------------------------------------- /pysot/models/init_weight.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1085052159/PysotPlus/HEAD/pysot/models/init_weight.py -------------------------------------------------------------------------------- /pysot/models/iou_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1085052159/PysotPlus/HEAD/pysot/models/iou_loss.py -------------------------------------------------------------------------------- /pysot/models/loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1085052159/PysotPlus/HEAD/pysot/models/loss.py -------------------------------------------------------------------------------- /pysot/models/model_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1085052159/PysotPlus/HEAD/pysot/models/model_builder.py -------------------------------------------------------------------------------- /pysot/models/neck/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1085052159/PysotPlus/HEAD/pysot/models/neck/__init__.py -------------------------------------------------------------------------------- /pysot/models/neck/neck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1085052159/PysotPlus/HEAD/pysot/models/neck/neck.py -------------------------------------------------------------------------------- /pysot/tracker/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pysot/tracker/base_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1085052159/PysotPlus/HEAD/pysot/tracker/base_tracker.py -------------------------------------------------------------------------------- /pysot/tracker/siamban_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1085052159/PysotPlus/HEAD/pysot/tracker/siamban_tracker.py -------------------------------------------------------------------------------- /pysot/tracker/siammask_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1085052159/PysotPlus/HEAD/pysot/tracker/siammask_tracker.py -------------------------------------------------------------------------------- /pysot/tracker/siamrpn_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1085052159/PysotPlus/HEAD/pysot/tracker/siamrpn_tracker.py -------------------------------------------------------------------------------- /pysot/tracker/siamrpnlt_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1085052159/PysotPlus/HEAD/pysot/tracker/siamrpnlt_tracker.py -------------------------------------------------------------------------------- /pysot/tracker/tracker_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1085052159/PysotPlus/HEAD/pysot/tracker/tracker_builder.py -------------------------------------------------------------------------------- /pysot/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pysot/utils/anchor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1085052159/PysotPlus/HEAD/pysot/utils/anchor.py -------------------------------------------------------------------------------- /pysot/utils/average_meter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1085052159/PysotPlus/HEAD/pysot/utils/average_meter.py -------------------------------------------------------------------------------- /pysot/utils/bbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1085052159/PysotPlus/HEAD/pysot/utils/bbox.py -------------------------------------------------------------------------------- /pysot/utils/bbox_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1085052159/PysotPlus/HEAD/pysot/utils/bbox_train.py -------------------------------------------------------------------------------- /pysot/utils/distributed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1085052159/PysotPlus/HEAD/pysot/utils/distributed.py -------------------------------------------------------------------------------- /pysot/utils/log_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1085052159/PysotPlus/HEAD/pysot/utils/log_helper.py -------------------------------------------------------------------------------- /pysot/utils/lr_scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1085052159/PysotPlus/HEAD/pysot/utils/lr_scheduler.py -------------------------------------------------------------------------------- /pysot/utils/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1085052159/PysotPlus/HEAD/pysot/utils/misc.py -------------------------------------------------------------------------------- /pysot/utils/model_load.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1085052159/PysotPlus/HEAD/pysot/utils/model_load.py -------------------------------------------------------------------------------- /pysot/utils/my_visdom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1085052159/PysotPlus/HEAD/pysot/utils/my_visdom.py -------------------------------------------------------------------------------- /pysot/utils/point.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1085052159/PysotPlus/HEAD/pysot/utils/point.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1085052159/PysotPlus/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1085052159/PysotPlus/HEAD/setup.py -------------------------------------------------------------------------------- /shell/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1085052159/PysotPlus/HEAD/shell/__init__.py -------------------------------------------------------------------------------- /shell/eval.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1085052159/PysotPlus/HEAD/shell/eval.sh -------------------------------------------------------------------------------- /shell/finetune.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1085052159/PysotPlus/HEAD/shell/finetune.sh -------------------------------------------------------------------------------- /shell/run_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1085052159/PysotPlus/HEAD/shell/run_eval.py -------------------------------------------------------------------------------- /shell/run_finetune.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1085052159/PysotPlus/HEAD/shell/run_finetune.py -------------------------------------------------------------------------------- /shell/run_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1085052159/PysotPlus/HEAD/shell/run_test.py -------------------------------------------------------------------------------- /shell/run_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1085052159/PysotPlus/HEAD/shell/run_train.py -------------------------------------------------------------------------------- /shell/test_eval.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1085052159/PysotPlus/HEAD/shell/test_eval.sh -------------------------------------------------------------------------------- /shell/train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1085052159/PysotPlus/HEAD/shell/train.sh -------------------------------------------------------------------------------- /shell/train_half.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1085052159/PysotPlus/HEAD/shell/train_half.sh -------------------------------------------------------------------------------- /shell/union.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1085052159/PysotPlus/HEAD/shell/union.py -------------------------------------------------------------------------------- /shell/union.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1085052159/PysotPlus/HEAD/shell/union.sh -------------------------------------------------------------------------------- /test_json/CVPR13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1085052159/PysotPlus/HEAD/test_json/CVPR13.json -------------------------------------------------------------------------------- /test_json/GOT-10k.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1085052159/PysotPlus/HEAD/test_json/GOT-10k.json -------------------------------------------------------------------------------- /test_json/LaSOT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1085052159/PysotPlus/HEAD/test_json/LaSOT.json -------------------------------------------------------------------------------- /test_json/NFS240.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1085052159/PysotPlus/HEAD/test_json/NFS240.json -------------------------------------------------------------------------------- /test_json/NFS30.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1085052159/PysotPlus/HEAD/test_json/NFS30.json -------------------------------------------------------------------------------- /test_json/OTB100.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1085052159/PysotPlus/HEAD/test_json/OTB100.json -------------------------------------------------------------------------------- /test_json/OTB50.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1085052159/PysotPlus/HEAD/test_json/OTB50.json -------------------------------------------------------------------------------- /test_json/TrackingNet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1085052159/PysotPlus/HEAD/test_json/TrackingNet.json -------------------------------------------------------------------------------- /test_json/UAV123.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1085052159/PysotPlus/HEAD/test_json/UAV123.json -------------------------------------------------------------------------------- /test_json/UAV20L.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1085052159/PysotPlus/HEAD/test_json/UAV20L.json -------------------------------------------------------------------------------- /test_json/VOT2016.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1085052159/PysotPlus/HEAD/test_json/VOT2016.json -------------------------------------------------------------------------------- /test_json/VOT2018-LT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1085052159/PysotPlus/HEAD/test_json/VOT2018-LT.json -------------------------------------------------------------------------------- /test_json/VOT2018.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1085052159/PysotPlus/HEAD/test_json/VOT2018.json -------------------------------------------------------------------------------- /test_json/VOT2019.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1085052159/PysotPlus/HEAD/test_json/VOT2019.json -------------------------------------------------------------------------------- /toolkit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /toolkit/datasets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1085052159/PysotPlus/HEAD/toolkit/datasets/__init__.py -------------------------------------------------------------------------------- /toolkit/datasets/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1085052159/PysotPlus/HEAD/toolkit/datasets/dataset.py -------------------------------------------------------------------------------- /toolkit/datasets/got10k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1085052159/PysotPlus/HEAD/toolkit/datasets/got10k.py -------------------------------------------------------------------------------- /toolkit/datasets/lasot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1085052159/PysotPlus/HEAD/toolkit/datasets/lasot.py -------------------------------------------------------------------------------- /toolkit/datasets/nfs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1085052159/PysotPlus/HEAD/toolkit/datasets/nfs.py -------------------------------------------------------------------------------- /toolkit/datasets/otb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1085052159/PysotPlus/HEAD/toolkit/datasets/otb.py -------------------------------------------------------------------------------- /toolkit/datasets/trackingnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1085052159/PysotPlus/HEAD/toolkit/datasets/trackingnet.py -------------------------------------------------------------------------------- /toolkit/datasets/uav.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1085052159/PysotPlus/HEAD/toolkit/datasets/uav.py -------------------------------------------------------------------------------- /toolkit/datasets/video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1085052159/PysotPlus/HEAD/toolkit/datasets/video.py -------------------------------------------------------------------------------- /toolkit/datasets/vot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1085052159/PysotPlus/HEAD/toolkit/datasets/vot.py -------------------------------------------------------------------------------- /toolkit/evaluation/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1085052159/PysotPlus/HEAD/toolkit/evaluation/__init__.py -------------------------------------------------------------------------------- /toolkit/evaluation/ar_benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1085052159/PysotPlus/HEAD/toolkit/evaluation/ar_benchmark.py -------------------------------------------------------------------------------- /toolkit/evaluation/eao_benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1085052159/PysotPlus/HEAD/toolkit/evaluation/eao_benchmark.py -------------------------------------------------------------------------------- /toolkit/evaluation/f1_benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1085052159/PysotPlus/HEAD/toolkit/evaluation/f1_benchmark.py -------------------------------------------------------------------------------- /toolkit/evaluation/ope_benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1085052159/PysotPlus/HEAD/toolkit/evaluation/ope_benchmark.py -------------------------------------------------------------------------------- /toolkit/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1085052159/PysotPlus/HEAD/toolkit/utils/__init__.py -------------------------------------------------------------------------------- /toolkit/utils/c_region.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1085052159/PysotPlus/HEAD/toolkit/utils/c_region.pxd -------------------------------------------------------------------------------- /toolkit/utils/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1085052159/PysotPlus/HEAD/toolkit/utils/misc.py -------------------------------------------------------------------------------- /toolkit/utils/region.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1085052159/PysotPlus/HEAD/toolkit/utils/region.c -------------------------------------------------------------------------------- /toolkit/utils/region.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1085052159/PysotPlus/HEAD/toolkit/utils/region.pyx -------------------------------------------------------------------------------- /toolkit/utils/src/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1085052159/PysotPlus/HEAD/toolkit/utils/src/buffer.h -------------------------------------------------------------------------------- /toolkit/utils/src/region.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1085052159/PysotPlus/HEAD/toolkit/utils/src/region.c -------------------------------------------------------------------------------- /toolkit/utils/src/region.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1085052159/PysotPlus/HEAD/toolkit/utils/src/region.h -------------------------------------------------------------------------------- /toolkit/utils/statistics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1085052159/PysotPlus/HEAD/toolkit/utils/statistics.py -------------------------------------------------------------------------------- /toolkit/visualization/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1085052159/PysotPlus/HEAD/toolkit/visualization/__init__.py -------------------------------------------------------------------------------- /toolkit/visualization/draw_eao.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1085052159/PysotPlus/HEAD/toolkit/visualization/draw_eao.py -------------------------------------------------------------------------------- /toolkit/visualization/draw_f1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1085052159/PysotPlus/HEAD/toolkit/visualization/draw_f1.py -------------------------------------------------------------------------------- /toolkit/visualization/draw_success_precision.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1085052159/PysotPlus/HEAD/toolkit/visualization/draw_success_precision.py -------------------------------------------------------------------------------- /toolkit/visualization/draw_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1085052159/PysotPlus/HEAD/toolkit/visualization/draw_utils.py -------------------------------------------------------------------------------- /tools/demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1085052159/PysotPlus/HEAD/tools/demo.py -------------------------------------------------------------------------------- /tools/eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1085052159/PysotPlus/HEAD/tools/eval.py -------------------------------------------------------------------------------- /tools/hp_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1085052159/PysotPlus/HEAD/tools/hp_search.py -------------------------------------------------------------------------------- /tools/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1085052159/PysotPlus/HEAD/tools/test.py -------------------------------------------------------------------------------- /tools/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1085052159/PysotPlus/HEAD/tools/train.py -------------------------------------------------------------------------------- /tools/train_half.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1085052159/PysotPlus/HEAD/tools/train_half.py -------------------------------------------------------------------------------- /tools/train_half_single_gpu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1085052159/PysotPlus/HEAD/tools/train_half_single_gpu.py -------------------------------------------------------------------------------- /tools/tune.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1085052159/PysotPlus/HEAD/tools/tune.py -------------------------------------------------------------------------------- /training_dataset/coco/gen_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1085052159/PysotPlus/HEAD/training_dataset/coco/gen_json.py -------------------------------------------------------------------------------- /training_dataset/coco/par_crop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1085052159/PysotPlus/HEAD/training_dataset/coco/par_crop.py -------------------------------------------------------------------------------- /training_dataset/coco/pycocotools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1085052159/PysotPlus/HEAD/training_dataset/coco/pycocotools/Makefile -------------------------------------------------------------------------------- /training_dataset/coco/pycocotools/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'tylin' 2 | -------------------------------------------------------------------------------- /training_dataset/coco/pycocotools/_mask.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1085052159/PysotPlus/HEAD/training_dataset/coco/pycocotools/_mask.pyx -------------------------------------------------------------------------------- /training_dataset/coco/pycocotools/coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1085052159/PysotPlus/HEAD/training_dataset/coco/pycocotools/coco.py -------------------------------------------------------------------------------- /training_dataset/coco/pycocotools/cocoeval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1085052159/PysotPlus/HEAD/training_dataset/coco/pycocotools/cocoeval.py -------------------------------------------------------------------------------- /training_dataset/coco/pycocotools/common/gason.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1085052159/PysotPlus/HEAD/training_dataset/coco/pycocotools/common/gason.cpp -------------------------------------------------------------------------------- /training_dataset/coco/pycocotools/common/gason.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1085052159/PysotPlus/HEAD/training_dataset/coco/pycocotools/common/gason.h -------------------------------------------------------------------------------- /training_dataset/coco/pycocotools/common/maskApi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1085052159/PysotPlus/HEAD/training_dataset/coco/pycocotools/common/maskApi.c -------------------------------------------------------------------------------- /training_dataset/coco/pycocotools/common/maskApi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1085052159/PysotPlus/HEAD/training_dataset/coco/pycocotools/common/maskApi.h -------------------------------------------------------------------------------- /training_dataset/coco/pycocotools/mask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1085052159/PysotPlus/HEAD/training_dataset/coco/pycocotools/mask.py -------------------------------------------------------------------------------- /training_dataset/coco/pycocotools/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1085052159/PysotPlus/HEAD/training_dataset/coco/pycocotools/setup.py -------------------------------------------------------------------------------- /training_dataset/coco/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1085052159/PysotPlus/HEAD/training_dataset/coco/readme.md -------------------------------------------------------------------------------- /training_dataset/coco/visual.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1085052159/PysotPlus/HEAD/training_dataset/coco/visual.py -------------------------------------------------------------------------------- /training_dataset/det/gen_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1085052159/PysotPlus/HEAD/training_dataset/det/gen_json.py -------------------------------------------------------------------------------- /training_dataset/det/par_crop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1085052159/PysotPlus/HEAD/training_dataset/det/par_crop.py -------------------------------------------------------------------------------- /training_dataset/det/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1085052159/PysotPlus/HEAD/training_dataset/det/readme.md -------------------------------------------------------------------------------- /training_dataset/det/visual.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1085052159/PysotPlus/HEAD/training_dataset/det/visual.py -------------------------------------------------------------------------------- /training_dataset/vid/gen_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1085052159/PysotPlus/HEAD/training_dataset/vid/gen_json.py -------------------------------------------------------------------------------- /training_dataset/vid/par_crop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1085052159/PysotPlus/HEAD/training_dataset/vid/par_crop.py -------------------------------------------------------------------------------- /training_dataset/vid/parse_vid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1085052159/PysotPlus/HEAD/training_dataset/vid/parse_vid.py -------------------------------------------------------------------------------- /training_dataset/vid/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1085052159/PysotPlus/HEAD/training_dataset/vid/readme.md -------------------------------------------------------------------------------- /training_dataset/vid/visual.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1085052159/PysotPlus/HEAD/training_dataset/vid/visual.py -------------------------------------------------------------------------------- /training_dataset/yt_bb/checknum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1085052159/PysotPlus/HEAD/training_dataset/yt_bb/checknum.py -------------------------------------------------------------------------------- /training_dataset/yt_bb/gen_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1085052159/PysotPlus/HEAD/training_dataset/yt_bb/gen_json.py -------------------------------------------------------------------------------- /training_dataset/yt_bb/par_crop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1085052159/PysotPlus/HEAD/training_dataset/yt_bb/par_crop.py -------------------------------------------------------------------------------- /training_dataset/yt_bb/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1085052159/PysotPlus/HEAD/training_dataset/yt_bb/readme.md -------------------------------------------------------------------------------- /training_dataset/yt_bb/visual.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1085052159/PysotPlus/HEAD/training_dataset/yt_bb/visual.py -------------------------------------------------------------------------------- /vot_iter/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vot_iter/tracker_SiamRPNpp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1085052159/PysotPlus/HEAD/vot_iter/tracker_SiamRPNpp.m -------------------------------------------------------------------------------- /vot_iter/vot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1085052159/PysotPlus/HEAD/vot_iter/vot.py -------------------------------------------------------------------------------- /vot_iter/vot_iter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/1085052159/PysotPlus/HEAD/vot_iter/vot_iter.py --------------------------------------------------------------------------------