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