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.World (in Emgu.CV.World.dll) Version: 3.2.0.2682 (3.2.0.2682)
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