[][src]Enum opencv::mcc::INITIAL_METHOD_TYPE

#[repr(C)]pub enum INITIAL_METHOD_TYPE {
    INITIAL_METHOD_WHITE_BALANCE,
    INITIAL_METHOD_LEAST_SQUARE,
}

Enum of the possible types of initial method.

Variants

INITIAL_METHOD_WHITE_BALANCE

The white balance method. The initial value is:

INITIAL_METHOD_LEAST_SQUARE

the least square method is an optimal solution under the linear RGB distance function

Trait Implementations

impl Clone for INITIAL_METHOD_TYPE[src]

impl Copy for INITIAL_METHOD_TYPE[src]

impl Debug for INITIAL_METHOD_TYPE[src]

impl PartialEq<INITIAL_METHOD_TYPE> for INITIAL_METHOD_TYPE[src]

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