Struct opencv::tracking::TrackerKCF
source · pub struct TrackerKCF { /* private fields */ }
Expand description
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 KCF_ECCV which is extended to KCF with color-names features (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.
Implementations§
source§impl TrackerKCF
impl TrackerKCF
sourcepub fn create(parameters: TrackerKCF_Params) -> Result<Ptr<TrackerKCF>>
pub fn create(parameters: TrackerKCF_Params) -> Result<Ptr<TrackerKCF>>
Create KCF tracker instance
Parameters
- parameters: KCF parameters TrackerKCF::Params
C++ default parameters
- parameters: TrackerKCF::Params()
Trait Implementations§
source§impl Boxed for TrackerKCF
impl Boxed for TrackerKCF
source§impl Debug for TrackerKCF
impl Debug for TrackerKCF
source§impl Drop for TrackerKCF
impl Drop for TrackerKCF
source§impl From<TrackerKCF> for Tracker
impl From<TrackerKCF> for Tracker
source§fn from(s: TrackerKCF) -> Self
fn from(s: TrackerKCF) -> Self
Converts to this type from the input type.
source§impl TrackerKCFTrait for TrackerKCF
impl TrackerKCFTrait for TrackerKCF
fn as_raw_mut_TrackerKCF(&mut self) -> *mut c_void
source§fn set_feature_extractor(
&mut self,
callback: TrackerKCF_FeatureExtractorCallbackFN,
pca_func: bool
) -> Result<()>
fn set_feature_extractor( &mut self, callback: TrackerKCF_FeatureExtractorCallbackFN, pca_func: bool ) -> Result<()>
C++ default parameters Read more
source§impl TrackerKCFTraitConst for TrackerKCF
impl TrackerKCFTraitConst for TrackerKCF
fn as_raw_TrackerKCF(&self) -> *const c_void
source§impl TrackerTrait for TrackerKCF
impl TrackerTrait for TrackerKCF
source§impl TrackerTraitConst for TrackerKCF
impl TrackerTraitConst for TrackerKCF
fn as_raw_Tracker(&self) -> *const c_void
impl Send for TrackerKCF
Auto Trait Implementations§
impl RefUnwindSafe for TrackerKCF
impl !Sync for TrackerKCF
impl Unpin for TrackerKCF
impl UnwindSafe for TrackerKCF
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more