pub trait CalibrateRobertsonConst: CalibrateCRFConst {
    fn as_raw_CalibrateRobertson(&self) -> *const c_void;

    fn get_max_iter(&self) -> Result<i32> { ... }
    fn get_threshold(&self) -> Result<f32> { ... }
    fn get_radiance(&self) -> Result<Mat> { ... }
}
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

Implementors