Enum opencv::core::DecompTypes
source · #[repr(C)]pub enum DecompTypes {
DECOMP_LU,
DECOMP_SVD,
DECOMP_EIG,
DECOMP_CHOLESKY,
DECOMP_QR,
DECOMP_NORMAL,
}
Expand description
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 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
are
solved instead of the original system
Trait Implementations§
source§impl Clone for DecompTypes
impl Clone for DecompTypes
source§fn clone(&self) -> DecompTypes
fn clone(&self) -> DecompTypes
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for DecompTypes
impl Debug for DecompTypes
source§impl PartialEq<DecompTypes> for DecompTypes
impl PartialEq<DecompTypes> for DecompTypes
source§fn eq(&self, other: &DecompTypes) -> bool
fn eq(&self, other: &DecompTypes) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for DecompTypes
impl Eq for DecompTypes
impl StructuralEq for DecompTypes
impl StructuralPartialEq for DecompTypes
Auto Trait Implementations§
impl RefUnwindSafe for DecompTypes
impl Send for DecompTypes
impl Sync for DecompTypes
impl Unpin for DecompTypes
impl UnwindSafe for DecompTypes
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more