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: 3.2.0.2682 (3.2.0.2682)
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