Enum InversionMethod
Specifies the inversion method for solving linear systems.
Namespace: OpenCV.Net
Assembly: OpenCV.Net.dll
Syntax
public enum InversionMethod : int
Fields
Name | Description |
---|---|
Cholesky | Cholesky decomposition. The matrix must be symmetrical and positively defined. |
LU | Gaussian elimination with optimal pivot element chosen. |
Normal | A non-exclusive flag meaning that the normal equations are solved instead of the original system. |
QR | QR decomposition. The system can be over-defined and/or the input matrix can be singular. |
Svd | Singular value decomposition (SVD) method. |
SvdSym | SVD method for a symmetric positively-defined matrix. |