Package org.opencv.tracking
Class TrackerKCF
- java.lang.Object
- 
- org.opencv.video.Tracker
- 
- org.opencv.tracking.TrackerKCF
 
 
- 
 public class TrackerKCF extends Tracker the KCF (Kernelized Correlation Filter) tracker KCF is a novel tracking framework that utilizes properties of circulant matrix to enhance the processing speed. This tracking method is an implementation of CITE: KCF_ECCV which is extended to KCF with color-names features (CITE: KCF_CN). The original paper of KCF is available at <http://www.robots.ox.ac.uk/~joao/publications/henriques_tpami2015.pdf> as well as the matlab implementation. For more information about KCF with color-names features, please refer to <http://www.cvl.isy.liu.se/research/objrec/visualtracking/colvistrack/index.html>.
- 
- 
Constructor SummaryConstructors Modifier Constructor Description protectedTrackerKCF(long addr)
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static TrackerKCF__fromPtr__(long addr)static TrackerKCFcreate()Create KCF tracker instancestatic TrackerKCFcreate(TrackerKCF_Params parameters)Create KCF tracker instanceprotected voidfinalize()- 
Methods inherited from class org.opencv.video.TrackergetNativeObjAddr, init, update
 
- 
 
- 
- 
- 
Field Detail- 
GRAYpublic static final int GRAY - See Also:
- Constant Field Values
 
 - 
CNpublic static final int CN - See Also:
- Constant Field Values
 
 - 
CUSTOMpublic static final int CUSTOM - See Also:
- Constant Field Values
 
 
- 
 - 
Method Detail- 
__fromPtr__public static TrackerKCF __fromPtr__(long addr) 
 - 
createpublic static TrackerKCF create(TrackerKCF_Params parameters) Create KCF tracker instance- Parameters:
- parameters- KCF parameters TrackerKCF::Params
- Returns:
- automatically generated
 
 - 
createpublic static TrackerKCF create() Create KCF tracker instance- Returns:
- automatically generated
 
 
- 
 
-