[][src]Struct opencv::tracking::TrackerKCF_Params

#[repr(C)]pub struct TrackerKCF_Params {
    pub detect_thresh: f32,
    pub sigma: f32,
    pub lambda: f32,
    pub interp_factor: f32,
    pub output_sigma_factor: f32,
    pub pca_learning_rate: f32,
    pub resize: bool,
    pub split_coeff: bool,
    pub wrap_kernel: bool,
    pub compress_feature: bool,
    pub max_patch_size: i32,
    pub compressed_size: i32,
    pub desc_pca: i32,
    pub desc_npca: i32,
}

Fields

detect_thresh: f32

detection confidence threshold

sigma: f32

gaussian kernel bandwidth

lambda: f32

regularization

interp_factor: f32

linear interpolation factor for adaptation

output_sigma_factor: f32

spatial bandwidth (proportional to target)

pca_learning_rate: f32

compression learning rate

resize: bool

activate the resize feature to improve the processing speed

split_coeff: bool

split the training coefficients into two matrices

wrap_kernel: bool

wrap around the kernel values

compress_feature: bool

activate the pca method to compress the features

max_patch_size: i32

threshold for the ROI size

compressed_size: i32

feature size after compression

desc_pca: i32

compressed descriptors of TrackerKCF::MODE

desc_npca: i32

non-compressed descriptors of TrackerKCF::MODE

Implementations

impl TrackerKCF_Params[src]

Trait Implementations

impl Clone for TrackerKCF_Params[src]

impl Copy for TrackerKCF_Params[src]

impl Debug for TrackerKCF_Params[src]

impl PartialEq<TrackerKCF_Params> for TrackerKCF_Params[src]

impl StructuralPartialEq for TrackerKCF_Params[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.