Enum opencv::core::SVD_Flags [−][src]
#[repr(C)]
pub enum SVD_Flags {
MODIFY_A,
NO_UV,
FULL_UV,
}
Variants
allow the algorithm to modify the decomposed matrix; it can save space and speed up processing. currently ignored.
indicates that only a vector of singular values w
is to be processed, while u and vt
will be set to empty matrices
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
Auto Trait Implementations
impl RefUnwindSafe for SVD_Flags
impl UnwindSafe for SVD_Flags
Blanket Implementations
Mutably borrows from an owned value. Read more