| Cv2Determinant Method |
computes determinant of a square matrix
Namespace:
OpenCvSharp
Assembly:
OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0
Syntax public static double Determinant(
InputArray mtx
)
Public Shared Function Determinant (
mtx As InputArray
) As Double
public:
static double Determinant(
InputArray^ mtx
)
static member Determinant :
mtx : InputArray -> float
Parameters
- mtx
- Type: OpenCvSharpInputArray
The input matrix; must have CV_32FC1 or CV_64FC1 type and square size
Return Value
Type:
Doubledeterminant of the specified matrix.
See Also