pub trait SimpleWB: SimpleWBConst + WhiteBalancer {
    fn as_raw_mut_SimpleWB(&mut self) -> *mut c_void;

    fn set_input_min(&mut self, val: f32) -> Result<()> { ... }
    fn set_input_max(&mut self, val: f32) -> Result<()> { ... }
    fn set_output_min(&mut self, val: f32) -> Result<()> { ... }
    fn set_output_max(&mut self, val: f32) -> Result<()> { ... }
    fn set_p(&mut self, val: f32) -> Result<()> { ... }
}

Required Methods

Provided Methods

Input image range minimum value

See also

setInputMin getInputMin

Input image range maximum value

See also

setInputMax getInputMax

Output image range minimum value

See also

setOutputMin getOutputMin

Output image range maximum value

See also

setOutputMax getOutputMax

Percent of top/bottom values to ignore

See also

setP getP

Implementors