CudaInvokeCalcHist Method |
http://www.emgu.com
Calculates histogram for one channel 8-bit image.
Namespace:
Emgu.CV.Cuda
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.0.3408 (4.1.0.3408)
Syntaxpublic static void CalcHist(
IInputArray src,
IOutputArray hist,
Stream stream = null
)
Public Shared Sub CalcHist (
src As IInputArray,
hist As IOutputArray,
Optional stream As Stream = Nothing
)
public:
static void CalcHist(
IInputArray^ src,
IOutputArray^ hist,
Stream^ stream = nullptr
)
static member CalcHist :
src : IInputArray *
hist : IOutputArray *
?stream : Stream
(* Defaults:
let _stream = defaultArg stream null
*)
-> unit
Parameters
- src
- Type: Emgu.CVIInputArray
Source image with CV_8UC1 type. - hist
- Type: Emgu.CVIOutputArray
Destination histogram with one row, 256 columns, and the CV_32SC1 type. - stream (Optional)
- Type: Emgu.CV.CudaStream
tream for the asynchronous version.
See Also