Click or drag to resize

CudaInvokeHistRange Method

http://www.emgu.com
Calculates a histogram with bins determined by the levels array

Namespace:  Emgu.CV.Cuda
Assembly:  Emgu.CV.Platform.NetStandard (in Emgu.CV.Platform.NetStandard.dll) Version: 4.3.0.3890
Syntax
public static void HistRange(
	IInputArray src,
	IOutputArray hist,
	IInputArray levels,
	Stream stream = null
)

Parameters

src
Type: Emgu.CVIInputArray
Source image. CV_8U , CV_16U , or CV_16S depth and 1 or 4 channels are supported. For a four-channel image, all channels are processed separately.
hist
Type: Emgu.CVIOutputArray
Destination histogram with one row, (levels.cols-1) columns, and the CV_32SC1 type.
levels
Type: Emgu.CVIInputArray
Number of levels in the histogram.
stream (Optional)
Type: Emgu.CV.CudaStream
Stream for the asynchronous version.
See Also