[][src]Enum opencv::core::SVD_Flags

#[repr(C)]pub enum SVD_Flags {
    MODIFY_A,
    NO_UV,
    FULL_UV,
}

Variants

MODIFY_A

allow the algorithm to modify the decomposed matrix; it can save space and speed up processing. currently ignored.

NO_UV

indicates that only a vector of singular values w is to be processed, while u and vt will be set to empty matrices

FULL_UV

when the matrix is not square, by default the algorithm produces u and vt matrices of sufficiently large size for the further A reconstruction; if, however, FULL_UV flag is specified, u and vt will be full-size square orthogonal matrices.

Trait Implementations

impl Clone for SVD_Flags[src]

impl Copy for SVD_Flags[src]

impl Debug for SVD_Flags[src]

impl PartialEq<SVD_Flags> for SVD_Flags[src]

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