Calculates the weighted distance between two vectors and returns it

Namespace: Emgu.CV
Assembly: Emgu.CV (in Emgu.CV.dll) Version: 2.2.1.1150 (2.2.1.1150)

Syntax

         
 C#  Visual Basic  Visual C++ 
public static double cvMahalanobis(
	IntPtr vec1,
	IntPtr vec2,
	IntPtr mat
)
Public Shared Function cvMahalanobis ( _
	vec1 As IntPtr, _
	vec2 As IntPtr, _
	mat As IntPtr _
) As Double
public:
static double cvMahalanobis(
	IntPtr vec1, 
	IntPtr vec2, 
	IntPtr mat
)

Parameters

vec1
IntPtr
The first 1D source vector
vec2
IntPtr
The second 1D source vector
mat
IntPtr
The inverse covariation matrix

Return Value

the Mahalanobis distance

See Also