Inversion methods
Namespace:
OpenCvSharp
Assembly:
OpenCvSharp (in OpenCvSharp.dll) Version: 3.4.1.20180605-33-CaRLSharp
SyntaxPublic Enumeration DecompTypes
public enum class DecompTypes
OpenCvSharp.DecompTypes = function();
OpenCvSharp.DecompTypes.createEnum('OpenCvSharp.DecompTypes', false);
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