[][src]Enum opencv::core::DecompTypes

#[repr(C)]pub enum DecompTypes {
    DECOMP_LU,
    DECOMP_SVD,
    DECOMP_EIG,
    DECOMP_CHOLESKY,
    DECOMP_QR,
    DECOMP_NORMAL,
}

matrix decomposition types

Variants

DECOMP_LU

Gaussian elimination with the optimal pivot element chosen.

DECOMP_SVD

singular value decomposition (SVD) method; the system can be over-defined and/or the matrix src1 can be singular

DECOMP_EIG

eigenvalue decomposition; the matrix src1 must be symmetrical

DECOMP_CHOLESKY

Cholesky inline formula factorization; the matrix src1 must be symmetrical and positively defined

DECOMP_QR

QR factorization; the system can be over-defined and/or the matrix src1 can be singular

DECOMP_NORMAL

while all the previous flags are mutually exclusive, this flag can be used together with any of the previous; it means that the normal equations inline formula are solved instead of the original system inline formula

Trait Implementations

impl Clone for DecompTypes[src]

impl Copy for DecompTypes[src]

impl Debug for DecompTypes[src]

impl PartialEq<DecompTypes> for DecompTypes[src]

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