| DecompTypes Enumeration |
Inversion methods
Namespace:
OpenCvSharp
Assembly:
OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0
Syntax Public Enumeration DecompTypes
public enum class DecompTypes
Members
| Member name | Value | Description |
---|
| LU | 0 |
Gaussian elimination with the optimal pivot element chosen.
|
| SVD | 1 |
singular value decomposition (SVD) method;
the system can be over-defined and/or the matrix src1 can be singular
|
| Eig | 2 |
eigenvalue decomposition; the matrix src1 must be symmetrical
|
| Cholesky | 3 |
Cholesky \f$LL^T\f$ factorization; the matrix src1 must be symmetrical
and positively defined
|
| QR | 4 |
QR factorization; the system can be over-defined and/or the matrix
src1 can be singular
|
| Normal | 16 |
while all the previous flags are mutually exclusive,
this flag can be used together with any of the previous
|
See Also