pub trait TonemapMantiuk: Tonemap + TonemapMantiukConst {
    // Required method
    fn as_raw_mut_TonemapMantiuk(&mut self) -> *mut c_void;

    // Provided methods
    fn set_scale(&mut self, scale: f32) -> Result<()> { ... }
    fn set_saturation(&mut self, saturation: f32) -> Result<()> { ... }
}
Expand description

This algorithm transforms image to contrast using gradients on all levels of gaussian pyramid, transforms contrast values to HVS response and scales the response. After this the image is reconstructed from new contrast values.

For more information see MM06 .

Required Methods§

Provided Methods§

source

fn set_scale(&mut self, scale: f32) -> Result<()>

source

fn set_saturation(&mut self, saturation: f32) -> Result<()>

Implementors§