Click or drag to resize
CudaInvokeHistEven Method
http://www.emgu.com
Calculates histogram with evenly distributed bins for single channel source.

Namespace: Emgu.CV.Cuda
Assembly: Emgu.CV.Cuda (in Emgu.CV.Cuda.dll) Version: 3.0.0.2161 (3.0.0.2161)
Syntax
public static void HistEven(
	IInputArray src,
	IOutputArray hist,
	int histSize,
	int lowerLevel,
	int upperLevel,
	Stream stream = null
)

Parameters

src
Type: Emgu.CVIInputArray
The source GpuMat. Supports CV_8UC1, CV_16UC1 and CV_16SC1 types.
hist
Type: Emgu.CVIOutputArray
Histogram with evenly distributed bins. A GpuMat<int> type.
histSize
Type: SystemInt32
The size of histogram (number of levels)
lowerLevel
Type: SystemInt32
The lower level
upperLevel
Type: SystemInt32
The upper level
stream (Optional)
Type: Emgu.CV.CudaStream
Use a Stream to call the function asynchronously (non-blocking) or null to call the function synchronously (blocking).

Return Value

Type: 
Histogram with evenly distributed bins
See Also