CudaInvokeHistRange Method |
http://www.emgu.com
Calculates a histogram with bins determined by the levels array
Namespace:
Emgu.CV.Cuda
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.0.1.3373 (4.0.1.3373)
Syntaxpublic static void HistRange(
IInputArray src,
IOutputArray hist,
IInputArray levels,
Stream stream = null
)
Public Shared Sub HistRange (
src As IInputArray,
hist As IOutputArray,
levels As IInputArray,
Optional stream As Stream = Nothing
)
public:
static void HistRange(
IInputArray^ src,
IOutputArray^ hist,
IInputArray^ levels,
Stream^ stream = nullptr
)
static member HistRange :
src : IInputArray *
hist : IOutputArray *
levels : IInputArray *
?stream : Stream
(* Defaults:
let _stream = defaultArg stream null
*)
-> unit
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