[][src]Trait opencv::cudaimgproc::prelude::CUDA_CLAHE

pub trait CUDA_CLAHE: CLAHE {
    pub fn as_raw_CUDA_CLAHE(&self) -> *const c_void;
pub fn as_raw_mut_CUDA_CLAHE(&mut self) -> *mut c_void; pub fn apply(
        &mut self,
        src: &dyn ToInputArray,
        dst: &mut dyn ToOutputArray,
        stream: &mut Stream
    ) -> Result<()> { ... } }

Base class for Contrast Limited Adaptive Histogram Equalization. :

Required methods

Loading content...

Provided methods

pub fn apply(
    &mut self,
    src: &dyn ToInputArray,
    dst: &mut dyn ToOutputArray,
    stream: &mut Stream
) -> Result<()>
[src]

Equalizes the histogram of a grayscale image using Contrast Limited Adaptive Histogram Equalization.

Parameters

  • src: Source image with CV_8UC1 type.
  • dst: Destination image.
  • stream: Stream for the asynchronous version.
Loading content...

Implementors

Loading content...