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.CVAssembly: Emgu.CV.World (in Emgu.CV.World.dll) Version: 3.2.0.2682 (3.2.0.2682)
Syntax public static double Determinant(
IInputArray mat
)
Public Shared Function Determinant (
mat As IInputArray
) As Double
public:
static double Determinant(
IInputArray^ mat
)
static member Determinant :
mat : IInputArray -> float
Parameters
- mat
- Type: Emgu.CVIInputArray
The pointer to the matrix
Return Value
Type:
Doubledeterminant of the square matrix mat
See Also