Click or drag to resize

CvInvokeSolve Method

http://www.emgu.com
Solves linear system (src1)*(dst) = (src2)

Namespace:  Emgu.CV
Assembly:  Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.1.3497 (4.1.1.3497)
Syntax
public static int Solve(
	IInputArray src1,
	IInputArray src2,
	IOutputArray dst,
	DecompMethod method
)

Parameters

src1
Type: Emgu.CVIInputArray
The source matrix in the LHS
src2
Type: Emgu.CVIInputArray
The source matrix in the RHS
dst
Type: Emgu.CVIOutputArray
The result
method
Type: Emgu.CV.CvEnumDecompMethod
The method for solving the equation

Return Value

Type: Int32
0 if src1 is a singular and CV_LU method is used
See Also