Click or drag to resize

CvInvokeDeterminant Method

http://www.emgu.com
Returns determinant of the square matrix mat. The direct method is used for small matrices and Gaussian elimination is used for larger matrices. For symmetric positive-determined matrices it is also possible to run SVD with U=V=NULL and then calculate determinant as a product of the diagonal elements of W

Namespace:  Emgu.CV
Assembly:  Emgu.CV.Platform.NetStandard (in Emgu.CV.Platform.NetStandard.dll) Version: 4.3.0.3890
Syntax
public static double Determinant(
	IInputArray mat
)

Parameters

mat
Type: Emgu.CVIInputArray
The pointer to the matrix

Return Value

Type: Double
determinant of the square matrix mat
See Also