Enum opencv::core::DecompTypes [−][src]
#[repr(C)]
pub enum DecompTypes {
DECOMP_LU,
DECOMP_SVD,
DECOMP_EIG,
DECOMP_CHOLESKY,
DECOMP_QR,
DECOMP_NORMAL,
}Expand description
matrix decomposition types
Variants
Gaussian elimination with the optimal pivot element chosen.
singular value decomposition (SVD) method; the system can be over-defined and/or the matrix src1 can be singular
eigenvalue decomposition; the matrix src1 must be symmetrical
Cholesky factorization; the matrix src1 must be symmetrical and positively
defined
QR factorization; the system can be over-defined and/or the matrix src1 can be singular
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
are
solved instead of the original system
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for DecompTypesimpl Send for DecompTypesimpl Sync for DecompTypesimpl Unpin for DecompTypesimpl UnwindSafe for DecompTypesBlanket Implementations
Mutably borrows from an owned value. Read more