CvInv Method (CvArr, CvArr, InvertMethod) OpenCvSharp Class Library
Finds inverse or pseudo-inverse of matrix

Namespace:  OpenCvSharp
Assembly:  OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax

public static double Inv(
	CvArr src,
	CvArr dst,
	InvertMethod method
)

Parameters

src
Type: OpenCvSharpCvArr
The source matrix.
dst
Type: OpenCvSharpCvArr
The destination matrix.
method
Type: OpenCvSharpInvertMethod
Inversion method

Return Value

Type: Double
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. In case of SVD methods the function returns the inverted condition number of src1
See Also

Reference