http://www.emgu.com
Equalizes the histogram of a grayscale image using Contrast Limited Adaptive Histogram Equalization.
Namespace: Emgu.CV.CudaAssembly: Emgu.CV.Cuda (in Emgu.CV.Cuda.dll) Version: 3.0.0.2161 (3.0.0.2161)
Syntaxpublic void Apply(
IInputArray source,
IOutputArray dst,
Stream stream = null
)
Public Sub Apply (
source As IInputArray,
dst As IOutputArray,
Optional stream As Stream = Nothing
)
public:
void Apply(
IInputArray^ source,
IOutputArray^ dst,
Stream^ stream = nullptr
)
member Apply :
source : IInputArray *
dst : IOutputArray *
?stream : Stream
(* Defaults:
let _stream = defaultArg stream null
*)
-> unit
Parameters
- source
- Type: Emgu.CVIInputArray
Source image - dst
- Type: Emgu.CVIOutputArray
Destination image - stream (Optional)
- Type: Emgu.CV.CudaStream
Use a Stream to call the function asynchronously (non-blocking) or null to call the function synchronously (blocking).
See Also