http://www.emgu.com
Assembly: Emgu.CV (in Emgu.CV.dll) Version: 2.3.0.1416 (2.3.0.1416)
cvInvert method
Namespace: Emgu.CV.CvEnumAssembly: Emgu.CV (in Emgu.CV.dll) Version: 2.3.0.1416 (2.3.0.1416)
Syntax
C# |
---|
public enum SOLVE_METHOD |
Visual Basic |
---|
Public Enumeration SOLVE_METHOD |
Visual C++ |
---|
public enum class SOLVE_METHOD |
Members
Member name | Value | Description | |
---|---|---|---|
CV_LU | 0 | Gaussian elimination with optimal pivot element chose In case of LU method the function returns src1 determinant (src1 must be square). If it is 0, the matrix is not inverted and src2 is filled with zeros. | |
CV_SVD | 1 | Singular value decomposition (SVD) method In case of SVD methods the function returns the inversed condition number of src1 (ratio of the smallest singular value to the largest singular value) and 0 if src1 is all zeros. The SVD methods calculate a pseudo-inverse matrix if src1 is singular | |
CV_SVD_SYM | 2 | method for a symmetric positively-defined matrix |