Click or drag to resize

DecompTypes Enumeration

Inversion methods

Namespace:  OpenCvSharp
Assembly:  OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0
Syntax
public enum DecompTypes
Members
  Member nameValueDescription
LU0 Gaussian elimination with the optimal pivot element chosen.
SVD1 singular value decomposition (SVD) method; the system can be over-defined and/or the matrix src1 can be singular
Eig2 eigenvalue decomposition; the matrix src1 must be symmetrical
Cholesky3 Cholesky \f$LL^T\f$ factorization; the matrix src1 must be symmetrical and positively defined
QR4 QR factorization; the system can be over-defined and/or the matrix src1 can be singular
Normal16 while all the previous flags are mutually exclusive, this flag can be used together with any of the previous
See Also