Trait SimpleWBTraitConst

Source
pub trait SimpleWBTraitConst: WhiteBalancerTraitConst {
    // Required method
    fn as_raw_SimpleWB(&self) -> *const c_void;

    // Provided methods
    fn get_input_min(&self) -> Result<f32> { ... }
    fn get_input_max(&self) -> Result<f32> { ... }
    fn get_output_min(&self) -> Result<f32> { ... }
    fn get_output_max(&self) -> Result<f32> { ... }
    fn get_p(&self) -> Result<f32> { ... }
}
Expand description

Constant methods for crate::xphoto::SimpleWB

Required Methods§

Provided Methods§

Source

fn get_input_min(&self) -> Result<f32>

Input image range minimum value

§See also

setInputMin

Source

fn get_input_max(&self) -> Result<f32>

Input image range maximum value

§See also

setInputMax

Source

fn get_output_min(&self) -> Result<f32>

Output image range minimum value

§See also

setOutputMin

Source

fn get_output_max(&self) -> Result<f32>

Output image range maximum value

§See also

setOutputMax

Source

fn get_p(&self) -> Result<f32>

Percent of top/bottom values to ignore

§See also

setP

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§