pub trait CalibrateRobertson: CalibrateCRF + CalibrateRobertsonConst {
    // Required method
    fn as_raw_mut_CalibrateRobertson(&mut self) -> *mut c_void;

    // Provided methods
    fn set_max_iter(&mut self, max_iter: i32) -> Result<()> { ... }
    fn set_threshold(&mut self, threshold: f32) -> Result<()> { ... }
}
Expand description

Inverse camera response function is extracted for each brightness value by minimizing an objective function as linear system. This algorithm uses all image pixels.

For more information see RB99 .

Required Methods§

Provided Methods§

source

fn set_max_iter(&mut self, max_iter: i32) -> Result<()>

source

fn set_threshold(&mut self, threshold: f32) -> Result<()>

Implementors§