├── README.md ├── functions ├── __init__.py └── submodules.py ├── imbs ├── CMakeLists.txt ├── imagemanager.cpp ├── imagemanager.h ├── imbs.cpp ├── imbs.hpp ├── main.cpp └── natural_less.h ├── imgs ├── duke.gif ├── mnist.gif └── sprite.gif ├── modules ├── __init__.py ├── exp_config.json ├── feature_extractor.py ├── loss_calculator.py ├── model_config.json ├── net.py ├── renderer.py ├── submodules.py ├── tracker_array.py └── utils.py ├── result ├── duke │ └── tba │ │ └── default │ │ ├── sp_latest.json │ │ └── sp_latest.pt ├── mnist │ └── tba │ │ └── default │ │ ├── sp_latest.json │ │ └── sp_latest.pt └── sprite │ └── tba │ └── default │ ├── sp_latest.json │ └── sp_latest.pt ├── run.py └── scripts ├── build_imbs.sh ├── gen_duke.py ├── gen_duke_bb.py ├── gen_duke_bb_bg.py ├── gen_duke_processed.py ├── gen_duke_roi.py ├── gen_mnist.py ├── gen_sprite.py ├── get_metric_txt.py ├── mts2jpg.sh └── show_curve.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhen-he/tracking-by-animation/HEAD/README.md -------------------------------------------------------------------------------- /functions/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /functions/submodules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhen-he/tracking-by-animation/HEAD/functions/submodules.py -------------------------------------------------------------------------------- /imbs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhen-he/tracking-by-animation/HEAD/imbs/CMakeLists.txt -------------------------------------------------------------------------------- /imbs/imagemanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhen-he/tracking-by-animation/HEAD/imbs/imagemanager.cpp -------------------------------------------------------------------------------- /imbs/imagemanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhen-he/tracking-by-animation/HEAD/imbs/imagemanager.h -------------------------------------------------------------------------------- /imbs/imbs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhen-he/tracking-by-animation/HEAD/imbs/imbs.cpp -------------------------------------------------------------------------------- /imbs/imbs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhen-he/tracking-by-animation/HEAD/imbs/imbs.hpp -------------------------------------------------------------------------------- /imbs/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhen-he/tracking-by-animation/HEAD/imbs/main.cpp -------------------------------------------------------------------------------- /imbs/natural_less.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhen-he/tracking-by-animation/HEAD/imbs/natural_less.h -------------------------------------------------------------------------------- /imgs/duke.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhen-he/tracking-by-animation/HEAD/imgs/duke.gif -------------------------------------------------------------------------------- /imgs/mnist.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhen-he/tracking-by-animation/HEAD/imgs/mnist.gif -------------------------------------------------------------------------------- /imgs/sprite.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhen-he/tracking-by-animation/HEAD/imgs/sprite.gif -------------------------------------------------------------------------------- /modules/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /modules/exp_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhen-he/tracking-by-animation/HEAD/modules/exp_config.json -------------------------------------------------------------------------------- /modules/feature_extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhen-he/tracking-by-animation/HEAD/modules/feature_extractor.py -------------------------------------------------------------------------------- /modules/loss_calculator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhen-he/tracking-by-animation/HEAD/modules/loss_calculator.py -------------------------------------------------------------------------------- /modules/model_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhen-he/tracking-by-animation/HEAD/modules/model_config.json -------------------------------------------------------------------------------- /modules/net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhen-he/tracking-by-animation/HEAD/modules/net.py -------------------------------------------------------------------------------- /modules/renderer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhen-he/tracking-by-animation/HEAD/modules/renderer.py -------------------------------------------------------------------------------- /modules/submodules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhen-he/tracking-by-animation/HEAD/modules/submodules.py -------------------------------------------------------------------------------- /modules/tracker_array.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhen-he/tracking-by-animation/HEAD/modules/tracker_array.py -------------------------------------------------------------------------------- /modules/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhen-he/tracking-by-animation/HEAD/modules/utils.py -------------------------------------------------------------------------------- /result/duke/tba/default/sp_latest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhen-he/tracking-by-animation/HEAD/result/duke/tba/default/sp_latest.json -------------------------------------------------------------------------------- /result/duke/tba/default/sp_latest.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhen-he/tracking-by-animation/HEAD/result/duke/tba/default/sp_latest.pt -------------------------------------------------------------------------------- /result/mnist/tba/default/sp_latest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhen-he/tracking-by-animation/HEAD/result/mnist/tba/default/sp_latest.json -------------------------------------------------------------------------------- /result/mnist/tba/default/sp_latest.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhen-he/tracking-by-animation/HEAD/result/mnist/tba/default/sp_latest.pt -------------------------------------------------------------------------------- /result/sprite/tba/default/sp_latest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhen-he/tracking-by-animation/HEAD/result/sprite/tba/default/sp_latest.json -------------------------------------------------------------------------------- /result/sprite/tba/default/sp_latest.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhen-he/tracking-by-animation/HEAD/result/sprite/tba/default/sp_latest.pt -------------------------------------------------------------------------------- /run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhen-he/tracking-by-animation/HEAD/run.py -------------------------------------------------------------------------------- /scripts/build_imbs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhen-he/tracking-by-animation/HEAD/scripts/build_imbs.sh -------------------------------------------------------------------------------- /scripts/gen_duke.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhen-he/tracking-by-animation/HEAD/scripts/gen_duke.py -------------------------------------------------------------------------------- /scripts/gen_duke_bb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhen-he/tracking-by-animation/HEAD/scripts/gen_duke_bb.py -------------------------------------------------------------------------------- /scripts/gen_duke_bb_bg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhen-he/tracking-by-animation/HEAD/scripts/gen_duke_bb_bg.py -------------------------------------------------------------------------------- /scripts/gen_duke_processed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhen-he/tracking-by-animation/HEAD/scripts/gen_duke_processed.py -------------------------------------------------------------------------------- /scripts/gen_duke_roi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhen-he/tracking-by-animation/HEAD/scripts/gen_duke_roi.py -------------------------------------------------------------------------------- /scripts/gen_mnist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhen-he/tracking-by-animation/HEAD/scripts/gen_mnist.py -------------------------------------------------------------------------------- /scripts/gen_sprite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhen-he/tracking-by-animation/HEAD/scripts/gen_sprite.py -------------------------------------------------------------------------------- /scripts/get_metric_txt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhen-he/tracking-by-animation/HEAD/scripts/get_metric_txt.py -------------------------------------------------------------------------------- /scripts/mts2jpg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhen-he/tracking-by-animation/HEAD/scripts/mts2jpg.sh -------------------------------------------------------------------------------- /scripts/show_curve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhen-he/tracking-by-animation/HEAD/scripts/show_curve.py --------------------------------------------------------------------------------