Click or drag to resize

CvInvokeSolve Method

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

Namespace:  Emgu.CV
Assembly:  Emgu.CV.Platform.NetStandard (in Emgu.CV.Platform.NetStandard.dll) Version: 4.3.0.3890
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