[][src]Struct opencv::calib3d::UsacParams

#[repr(C)]pub struct UsacParams {
    pub confidence: f64,
    pub is_parallel: bool,
    pub lo_iterations: i32,
    pub lo_method: LocalOptimMethod,
    pub lo_sample_size: i32,
    pub max_iterations: i32,
    pub neighbors_search: NeighborSearchMethod,
    pub random_generator_state: i32,
    pub sampler: SamplingMethod,
    pub score: ScoreMethod,
    pub threshold: f64,
}

Fields

confidence: f64is_parallel: boollo_iterations: i32lo_method: LocalOptimMethodlo_sample_size: i32max_iterations: i32neighbors_search: NeighborSearchMethodrandom_generator_state: i32sampler: SamplingMethodscore: ScoreMethodthreshold: f64

Implementations

impl UsacParams[src]

Trait Implementations

impl Clone for UsacParams[src]

impl Copy for UsacParams[src]

impl Debug for UsacParams[src]

impl PartialEq<UsacParams> for UsacParams[src]

impl StructuralPartialEq for UsacParams[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.