├── .gitattributes ├── README.md ├── choose_video.m ├── data.rar ├── download_videos.m ├── external.txt ├── fhog.m ├── gaussian_correlation.m ├── gaussian_shaped_labels.m ├── get_features.m ├── get_subwindow.m ├── gradientMex.mexa64 ├── gradientMex.mexw64 ├── linear_correlation.m ├── load_video_info.m ├── polynomial_correlation.m ├── precision_plot.m ├── readme.txt ├── run_tracker.m ├── show_video.m ├── target_sz.m ├── tracker.m ├── videofig.m └── 流程图.rar /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsuradaYuci/KCF-FOR-MATLAB/HEAD/.gitattributes -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # KCF-FOR-MATLAB 2 | -------------------------------------------------------------------------------- /choose_video.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsuradaYuci/KCF-FOR-MATLAB/HEAD/choose_video.m -------------------------------------------------------------------------------- /data.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsuradaYuci/KCF-FOR-MATLAB/HEAD/data.rar -------------------------------------------------------------------------------- /download_videos.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsuradaYuci/KCF-FOR-MATLAB/HEAD/download_videos.m -------------------------------------------------------------------------------- /external.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsuradaYuci/KCF-FOR-MATLAB/HEAD/external.txt -------------------------------------------------------------------------------- /fhog.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsuradaYuci/KCF-FOR-MATLAB/HEAD/fhog.m -------------------------------------------------------------------------------- /gaussian_correlation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsuradaYuci/KCF-FOR-MATLAB/HEAD/gaussian_correlation.m -------------------------------------------------------------------------------- /gaussian_shaped_labels.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsuradaYuci/KCF-FOR-MATLAB/HEAD/gaussian_shaped_labels.m -------------------------------------------------------------------------------- /get_features.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsuradaYuci/KCF-FOR-MATLAB/HEAD/get_features.m -------------------------------------------------------------------------------- /get_subwindow.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsuradaYuci/KCF-FOR-MATLAB/HEAD/get_subwindow.m -------------------------------------------------------------------------------- /gradientMex.mexa64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsuradaYuci/KCF-FOR-MATLAB/HEAD/gradientMex.mexa64 -------------------------------------------------------------------------------- /gradientMex.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsuradaYuci/KCF-FOR-MATLAB/HEAD/gradientMex.mexw64 -------------------------------------------------------------------------------- /linear_correlation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsuradaYuci/KCF-FOR-MATLAB/HEAD/linear_correlation.m -------------------------------------------------------------------------------- /load_video_info.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsuradaYuci/KCF-FOR-MATLAB/HEAD/load_video_info.m -------------------------------------------------------------------------------- /polynomial_correlation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsuradaYuci/KCF-FOR-MATLAB/HEAD/polynomial_correlation.m -------------------------------------------------------------------------------- /precision_plot.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsuradaYuci/KCF-FOR-MATLAB/HEAD/precision_plot.m -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsuradaYuci/KCF-FOR-MATLAB/HEAD/readme.txt -------------------------------------------------------------------------------- /run_tracker.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsuradaYuci/KCF-FOR-MATLAB/HEAD/run_tracker.m -------------------------------------------------------------------------------- /show_video.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsuradaYuci/KCF-FOR-MATLAB/HEAD/show_video.m -------------------------------------------------------------------------------- /target_sz.m: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tracker.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsuradaYuci/KCF-FOR-MATLAB/HEAD/tracker.m -------------------------------------------------------------------------------- /videofig.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsuradaYuci/KCF-FOR-MATLAB/HEAD/videofig.m -------------------------------------------------------------------------------- /流程图.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AsuradaYuci/KCF-FOR-MATLAB/HEAD/流程图.rar --------------------------------------------------------------------------------