Compares two dense histograms

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 cvCompareHist(
	IntPtr hist1,
	IntPtr hist2,
	HISTOGRAM_COMP_METHOD method
)
Public Shared Function cvCompareHist ( _
	hist1 As IntPtr, _
	hist2 As IntPtr, _
	method As HISTOGRAM_COMP_METHOD _
) As Double
public:
static double cvCompareHist(
	IntPtr hist1, 
	IntPtr hist2, 
	HISTOGRAM_COMP_METHOD method
)

Parameters

hist1
IntPtr
The first dense histogram.
hist2
IntPtr
The second dense histogram.
method
HISTOGRAM_COMP_METHOD
Comparison method

Return Value

Result of the comparison

See Also