CvSolve Method (CvArr, CvArr, CvArr) OpenCvSharp Class Library
Solves linear system or least-squares problem

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

public static bool Solve(
	CvArr src1,
	CvArr src2,
	CvArr dst
)

Parameters

src1
Type: OpenCvSharpCvArr
The source matrix.
src2
Type: OpenCvSharpCvArr
The right-hand part of the linear system.
dst
Type: OpenCvSharpCvArr
The output solution.

Return Value

Type: Boolean
If CV_LU method is used, the function returns true if src1 is non-singular and false otherwise, in the latter case dst is not valid
See Also

Reference