#[repr(C)]
pub struct TrackerKCF_Params {
Show 14 fields 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

Trait Implementations

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
Formats the value using the given formatter. Read more
This method tests for self and other values to be equal, and is used by ==. Read more
This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
Uses borrowed data to replace owned data, usually by cloning. Read more
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.