Calculates histogram with evenly distributed bins for signle channel source.

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

Syntax

         
 C#  Visual Basic  Visual C++ 
public static GpuMat<int> HistEven(
	IntPtr src,
	int histSize,
	int lowerLevel,
	int upperLevel
)
Public Shared Function HistEven ( _
	src As IntPtr, _
	histSize As Integer, _
	lowerLevel As Integer, _
	upperLevel As Integer _
) As GpuMat(Of Integer)
public:
static GpuMat<int>^ HistEven(
	IntPtr src, 
	int histSize, 
	int lowerLevel, 
	int upperLevel
)

Parameters

src
IntPtr
The source GpuMat. Supports CV_8UC1, CV_16UC1 and CV_16SC1 types.
histSize
Int32
The size of histogram (number of levels)
lowerLevel
Int32
The lower level
upperLevel
Int32
The upper level

Return Value

Histogram with evenly distributed bins

See Also