pub trait TonemapConst: AlgorithmTraitConst {
    fn as_raw_Tonemap(&self) -> *const c_void;

    fn get_gamma(&self) -> Result<f32> { ... }
}
Expand description

Base class for tonemapping algorithms - tools that are used to map HDR image to 8-bit range.

Required Methods

Provided Methods

Implementors