Wrapped Opencv's CvDistanceFunction

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

Syntax

C#
public delegate float CvDistanceFunction(
	IntPtr f1,
	IntPtr f2,
	IntPtr userParams
)
Visual Basic (Declaration)
Public Delegate Function CvDistanceFunction ( _
	f1 As IntPtr, _
	f2 As IntPtr, _
	userParams As IntPtr _
) As Single
Visual C++
public delegate float CvDistanceFunction(
	IntPtr f1, 
	IntPtr f2, 
	IntPtr userParams
)

Parameters

f1
Type: System..::.IntPtr
Pointer to an array of float
f2
Type: System..::.IntPtr
Pointer to an array of float
userParams
Type: System..::.IntPtr
User passed parameters

Return Value

The distance between f1 and f2

See Also