http://www.emgu.com
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.3.0.1416 (2.3.0.1416)

Syntax

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

Parameters

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

Return Value

Histogram with evenly distributed bins

See Also