Enum DecompTypes
- Namespace
- OpenCvSharp
- Assembly
- OpenCvSharp.dll
Inversion methods
public enum DecompTypes
Fields
Cholesky = 3Cholesky \f$LL^T\f$ factorization; the matrix src1 must be symmetrical and positively defined
Eig = 2eigenvalue decomposition; the matrix src1 must be symmetrical
LU = 0Gaussian elimination with the optimal pivot element chosen.
Normal = 16while all the previous flags are mutually exclusive, this flag can be used together with any of the previous
QR = 4QR factorization; the system can be over-defined and/or the matrix src1 can be singular
SVD = 1singular value decomposition (SVD) method; the system can be over-defined and/or the matrix src1 can be singular