[][src]Trait opencv::photo::TonemapMantiuk

pub trait TonemapMantiuk: Tonemap {
    pub fn as_raw_TonemapMantiuk(&self) -> *const c_void;
pub fn as_raw_mut_TonemapMantiuk(&mut self) -> *mut c_void; pub fn get_scale(&self) -> Result<f32> { ... }
pub fn set_scale(&mut self, scale: f32) -> Result<()> { ... }
pub fn get_saturation(&self) -> Result<f32> { ... }
pub fn set_saturation(&mut self, saturation: f32) -> Result<()> { ... } }

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

Loading content...

Provided methods

pub fn get_scale(&self) -> Result<f32>[src]

pub fn set_scale(&mut self, scale: f32) -> Result<()>[src]

pub fn get_saturation(&self) -> Result<f32>[src]

pub fn set_saturation(&mut self, saturation: f32) -> Result<()>[src]

Loading content...

Implementors

Loading content...