csr-dcf-master

所属分类:其他
开发工具:matlab
文件大小:1163KB
下载次数:0
上传日期:2020-05-05 10:54:29
上 传 者6769706
说明:  视频跟踪算法csrdcf,可搭配vot工具箱进行测试,与自己的算法对比
(The video tracking algorithm csrdcf can be tested with the VOT toolbox and compared with its own algorithm)

文件列表:
compile.m (1955, 2018-02-26)
create_csr_tracker.m (9636, 2018-02-26)
csr_wrapper.m (1833, 2018-02-26)
demo_csr.m (2427, 2018-02-26)
features (0, 2018-02-26)
features\fhog.m (2966, 2018-02-26)
features\gradientHist.m (3427, 2018-02-26)
features\gradientMag.m (2340, 2018-02-26)
features\im2c.m (1201, 2018-02-26)
features\w2crs.mat (1142188, 2018-02-26)
mex_src (0, 2018-02-26)
mex_src\hog (0, 2018-02-26)
mex_src\hog\MxArray.cpp (19248, 2018-02-26)
mex_src\hog\MxArray.hpp (34982, 2018-02-26)
mex_src\hog\gradientMex.cpp (18892, 2018-02-26)
mex_src\hog\sse.hpp (3125, 2018-02-26)
mex_src\hog\wrappers.hpp (1573, 2018-02-26)
mex_src\segmentation (0, 2018-02-26)
mex_src\segmentation\mex_extractbackground.cpp (1898, 2018-02-26)
mex_src\segmentation\mex_extractforeground.cpp (1460, 2018-02-26)
mex_src\segmentation\mex_segment.cpp (1702, 2018-02-26)
mex_src\segmentation\mex_utils.hpp (5306, 2018-02-26)
mex_src\segmentation\src (0, 2018-02-26)
mex_src\segmentation\src\segment.cpp (10971, 2018-02-26)
mex_src\segmentation\src\segment.h (1598, 2018-02-26)
read_default_csr_parameters.m (1466, 2018-02-26)
track_csr_tracker.m (8381, 2018-02-26)
utils (0, 2018-02-26)
utils\binarize_softmask.m (414, 2018-02-26)
utils\create_csr_filter.m (1052, 2018-02-26)
utils\gaussian_shaped_labels.m (1305, 2018-02-26)
utils\get_csr_features.m (2311, 2018-02-26)
utils\get_location_prior.m (971, 2018-02-26)
utils\get_patch.m (771, 2018-02-26)
utils\get_scale_subwindow.m (1032, 2018-02-26)
utils\mask_normal.m (309, 2018-02-26)
utils\read_vot_regions.m (490, 2018-02-26)
utils\vot.m (6157, 2018-02-26)
... ...

# Discriminative Correlation Filter with Channel and Spatial Reliability Matlab implementation of the DCF-CSR tracker from the paper published in the proceedings of Conference on Computer Vision and Pattern Recognition (CVPR) 2017 and later in International Journal of Computer Vision (IJCV). ## Publications Journal publication:
Alan Lukezic, Tomas Vojir, Luka Cehovin, Jiri Matas and Matej Kristan. ''Discriminative Correlation Filter Tracker with Channel and Spatial Reliability.'' International Journal of Computer Vision (IJCV), 2018.
[Paper](https://arxiv.org/abs/1611.08461)
BibTex citation:
@Article{Lukezic_IJCV2018,
author={Luke{\v{z}}i{\v{c}}, Alan and Voj{\'i}{\v{r}}, Tom{\'a}{\v{s}} and {\v{C}}ehovin Zajc, Luka and Matas, Ji{\v{r}}{\'i} and Kristan, Matej},
title={Discriminative Correlation Filter Tracker with Channel and Spatial Reliability},
journal={International Journal of Computer Vision},
year={2018},
} Raw results: [VOT15](http://data.vicos.si/alanl/CSR-DCF-VOT15.zip) [VOT16](http://data.vicos.si/alanl/CSR-DCF-VOT16.zip) [OTB100](http://data.vicos.si/alanl/CSR-DCF-results-OTB100.zip) Conference publication:
Alan Lukezic, Tomas Vojir, Luka Cehovin, Jiri Matas and Matej Kristan. ''Discriminative Correlation Filter with Channel and Spatial Reliability.'' In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition (CVPR), 2017.
[Paper](http://openaccess.thecvf.com/content_cvpr_2017/papers/Lukezic_Discriminative_Correlation_Filter_CVPR_2017_paper.pdf)
BibTex citation:
@InProceedings{Lukezic_CVPR_2017,
Title = {Discriminative Correlation Filter with Channel and Spatial Reliability},
Author = {Luke{\v{z}}i{\v{c}}, Alan and Voj{\'i}{\v{r}}, Tom{\'a}{\v{s}} and {\v{C}}ehovin Zajc, Luka and Matas, Ji{\v{r}}{\'i} and Kristan, Matej},
Booktitle = {CVPR},
Year = {2017}
} ## Contacts Alan Lukezic, e-mail: alan.lukezic@fri.uni-lj.si
Tomas Vojir, e-mail: vojirtom@cmp.felk.cvut.cz
Luka Cehovin Zajc, e-mail: luka.cehovin@fri.uni-lj.si
## Installation and demo * Clone git repository:
$ git clone https://github.com/alanlukezic/csr-dcf.git * Compile mex files running compile.m command
Set opencv_include and opencv_libpath to the correct OpenCV paths * Use demo_csr.m script for the visualization of the tracker
Set tracker_path variable to the directory where your source code is and base_path to the directory where you have stored the VOT sequences. * Use csr_wrapper.m script for VOT integration ## C++ Implementation The C++ version of the CSR-DCF tracker is now available in OpenCV contrib repository (tracking module, CSRT tracker) ## Project summary Short-term tracking is an open and challenging problem for which discriminative correlation filters (DCF) have shown excellent performance. We introduce the channel and spatial reliability concepts to DCF tracking and provide a novel learning algorithm for its efficient and seamless integration in the filter update and the tracking process. The spatial reliability map adjusts the filter support to the part of the object suitable for tracking. This both allows to enlarge the search region and improves tracking of non-rectangular objects. Reliability scores reflect channel-wise quality of the learned filters and are used as feature weighting coefficients in localization. Experimentally, with only two simple standard features, HoGs and Colornames, the novel CSR-DCF method -- DCF with Channel and Spatial Reliability -- achieves state-of-the-art results on VOT 2016, VOT 2015 and OTB100. The CSR-DCF runs in real-time on a CPU.

## VOT Results Tracking results on the VOT-2015 benchmark:
Tracking results on the VOT-2016 benchmark:
Raw VOT results: [VOT15](http://data.vicos.si/alanl/CSR-DCF-VOT15.zip) [VOT16](http://data.vicos.si/alanl/CSR-DCF-VOT16.zip) ## Video Click here to see demo video on YouTube.

近期下载者

相关文件


收藏者