[][src]Function opencv::cudaimgproc::gamma_correction

pub fn gamma_correction(
    src: &dyn ToInputArray,
    dst: &mut dyn ToOutputArray,
    forward: bool,
    stream: &mut Stream
) -> Result<()>

Routines for correcting image color gamma.

Parameters

  • src: Source image (3- or 4-channel 8 bit).
  • dst: Destination image.
  • forward: true for forward gamma correction or false for inverse gamma correction.
  • stream: Stream for the asynchronous version.

C++ default parameters

  • forward: true
  • stream: Stream::Null()