All Projects → lifeng9472 → Strcf

lifeng9472 / Strcf

Learning Spatial-Temporal Regularized Correlation Filters for Visual Tracking (CVPR 2018)

Programming Languages

matlab
3953 projects

Projects that are alternatives of or similar to Strcf

fast irc.cr
A fast IRC parsing library for crystal.
Stars: ✭ 18 (-85.83%)
Mutual labels:  efficiency
Pouch
An Efficient Enterprise-class Container Engine
Stars: ✭ 4,483 (+3429.92%)
Mutual labels:  efficiency
Ostrio Analytics
📊 Visitor's analytics tracking code for ostr.io service
Stars: ✭ 9 (-92.91%)
Mutual labels:  efficiency
Comprehensive-Tacotron2
PyTorch Implementation of Google's Natural TTS Synthesis by Conditioning WaveNet on Mel Spectrogram Predictions. This implementation supports both single-, multi-speaker TTS and several techniques to enforce the robustness and efficiency of the model.
Stars: ✭ 22 (-82.68%)
Mutual labels:  efficiency
Marktext
📝A simple and elegant markdown editor, available for Linux, macOS and Windows.
Stars: ✭ 22,894 (+17926.77%)
Mutual labels:  efficiency
Python Mss
An ultra fast cross-platform multiple screenshots module in pure Python using ctypes.
Stars: ✭ 582 (+358.27%)
Mutual labels:  efficiency
websites
🔗 Effective Websites Collections
Stars: ✭ 55 (-56.69%)
Mutual labels:  efficiency
Server Tech Tree
服务端软件技术树:服务端主流技术九大分类和全景图
Stars: ✭ 106 (-16.54%)
Mutual labels:  efficiency
Prm
A minimal project manager for the terminal.
Stars: ✭ 428 (+237.01%)
Mutual labels:  efficiency
Void
terminal-based personal organizer
Stars: ✭ 831 (+554.33%)
Mutual labels:  efficiency
Chronix.server
The Chronix Server implementation that is based on Apache Solr.
Stars: ✭ 258 (+103.15%)
Mutual labels:  efficiency
Pomodorologger
Pomodoro Logger 🕤 -- When a time tracker meets Pomodoro and Kanban board
Stars: ✭ 316 (+148.82%)
Mutual labels:  efficiency
Steward
A command launcher for Chrome
Stars: ✭ 617 (+385.83%)
Mutual labels:  efficiency
Openrunner
Computest Openrunner: Benchmark and functional testing for frontend-heavy web applications
Stars: ✭ 16 (-87.4%)
Mutual labels:  efficiency
Go Benchmark App
Application for HTTP benchmarking via different rules and configs
Stars: ✭ 21 (-83.46%)
Mutual labels:  efficiency
vegasflow
VegasFlow: accelerating Monte Carlo simulation across multiple hardware platforms
Stars: ✭ 19 (-85.04%)
Mutual labels:  efficiency
Dapy
Easy-to-use data analysis / manipulation framework for humans
Stars: ✭ 523 (+311.81%)
Mutual labels:  efficiency
Xseries
Library for cross-version Minecraft Bukkit support and various efficient API methods.
Stars: ✭ 109 (-14.17%)
Mutual labels:  efficiency
Freqbench
Comprehensive CPU frequency performance/power benchmark
Stars: ✭ 65 (-48.82%)
Mutual labels:  efficiency
Capslock Plus
An efficiency tool that provides various functions by enhancing the Caps Lock key into a modifier key.
Stars: ✭ 650 (+411.81%)
Mutual labels:  efficiency

Learning Spatial-Temporal Regularized Correlation Filters for Visual Tracking (CVPR 2018)

Matlab implementation of our Spatial-Temporal Regularized Correlation Filters (STRCF) tracker.

Abstract

Discriminative Correlation Filters (DCF) are efficient in visual tracking but suffer from unwanted boundary effects. Spatially Regularized DCF (SRDCF) has been suggested to resolve this issue by enforcing spatial penalty on DCF coefficients, which, inevitably, improves the tracking performance at the price of increasing complexity. To tackle online updating, SRDCF formulates its model on multiple training images, further adding difficulties in improving efficiency. In this work, by introducing temporal regularization to SRDCF with single sample, we present our spatial-temporal regularized correlation filters (STRCF). Motivated by online Passive-Agressive (PA) algorithm, we introduce the temporal regularization to SRDCF with single sample, thus resulting in our spatial-temporal regularized correlation filters (STRCF). The STRCF formulation can not only serve as a reasonable approximation to SRDCF with multiple training samples, but also provide a more robust appearance model than SRDCF in the case of large appearance variations.Besides, it can be efficiently solved via the alternating direction method of multipliers (ADMM). By incorporating both temporal and spatial regularization, our STRCF can handle boundary effects without much loss in efficiency and achieve superior performance over SRDCF in terms of accuracy and speed. Experiments are conducted on three benchmark datasets: OTB-2015, Temple-Color, and VOT-2016. Compared with SRDCF, STRCF with hand-crafted features provides a ~5 times speedup and achieves a gain of 5.4% and 3.6% AUC score on OTB-2015 and Temple-Color, respectively. Moreover, STRCF combined with CNN features also performs favorably against state-of-the-art CNN-based trackers and achieves an AUC score of 68.3% on OTB-2015.

Publication

Details about the STRCF tracker can be found in our CVPR 2018 paper:

Feng Li, Cheng Tian, Wangmeng Zuo, Lei Zhang and Ming-Hsuan Yang.
Learning Spatial-Temporal Regularized Correlation Filters for Visual Tracking. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition (CVPR), 2018.

The paper link is: https://arxiv.org/abs/1803.08679

Please cite the above publication if you find STRCF useful in your research. The bibtex entry is:

@Inproceedings{Li2018STRCF,
title={Learning Spatial-Temporal Regularized Correlation Filters for Visual Tracking},
author={Li, Feng and Tian, Cheng and Zuo, Wangmeng and Zhang, Lei and Yang, Ming Hsuan},
booktitle={CVPR},
year={2018},
}

Contact

Feng Li

Email: [email protected]

Installation

Using git clone

  1. Clone the GIT repository:

    $ git clone https://github.com/lifeng9472/STRCF.git

  2. Clone the submodules.
    In the repository directory, run the commands:

    $ git submodule init
    $ git submodule update

  3. Start Matlab and navigate to the repository.
    Run the install script:

    |>> install

  4. Run the demo script to test the tracker:

    |>> demo_STRCF

Note: This package requires matconvnet [1], if you want to use CNN features, and PDollar Toolbox [2], if you want to use HOG features. Both these externals are included as git submodules and should be installed by following step 2. above.

Description and Instructions

How to run

The files in root directory are used to run the tracker in OTB and Temple-Color datasets.

These files are included:

  • run_STRCF.m - runfile for the STRCF tracker with hand-crafted features (i.e., HOG+CN).

  • run_DeepSTRCF.m - runfile for the DeepSTRCF tracker with CNN features.

Tracking performance on the OTB-2015, Temple-Color is given as follows,

Hand-crafted features on OTB-2015CNN features on OTB-2015all features on Temple-Color

Results on the VOT-2016 dataset are also provided.

  • tracker_DeepSTRCF.m - this file integrates the tracker into the VOT-2016 toolkit.

Note:

To run the tracker on VOT-2016 dataset, two things need to be taken:

  1. Change the location of the pre-trained CNN with absolute path rather than the relative path in feature_extraction/load_CNN.m.

  2. Change the location of the STRCF tracker in tracker_DeepSTRCF.m.

ECO SRDCF SRDCFDecon BACF DeepSRDCF ECO-HC STRCF DeepSTRCF
EAO 0.375 0.247 0.262 0.223 0.276 0.322 0.279 0.313
Accuracy 0.53 0.52 0.53 0.56 0.51 0.54 0.53 0.55
Robustness 0.73 1.5 1.42 1.88 1.17 1.08 1.32 0.92

Features

  1. Deep CNN features. It uses matconvnet [1], which is included as a git submodule in external_libs/matconvnet/. The imagenet-vgg-m-2048 network available at http://www.vlfeat.org/matconvnet/pretrained/ was used. You can try other networks, by placing them in the feature_extraction/networks/ folder.

  2. HOG features. It uses the PDollar Toolbox [2], which is included as a git submodule in external_libs/pdollar_toolbox/.

  3. Lookup table features. These are implemented as a lookup table that directly maps an RGB or grayscale value to a feature vector.

  4. Colorspace features. Currently grayscale and RGB are implemented.

Acknowledgements

We thank for Dr. Martin Danelljan and Hamed Kiani for their valuable help on our work. In this work, we have borrowed the feature extraction modules from the ECO tracker (https://github.com/martin-danelljan/ECO) and the parameter settings from BACF (www.hamedkiani.com/bacf.html).

References

[1] Webpage: http://www.vlfeat.org/matconvnet/
GitHub: https://github.com/vlfeat/matconvnet

[2] Piotr Dollár.
"Piotr’s Image and Video Matlab Toolbox (PMT)."
Webpage: https://pdollar.github.io/toolbox/
GitHub: https://github.com/pdollar/toolbox

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].