[][src]Trait opencv::photo::CalibrateRobertson

pub trait CalibrateRobertson: CalibrateCRF {
    fn as_raw_CalibrateRobertson(&self) -> *mut c_void;

    fn get_max_iter(&self) -> Result<i32> { ... }
fn set_max_iter(&mut self, max_iter: i32) -> Result<()> { ... }
fn get_threshold(&self) -> Result<f32> { ... }
fn set_threshold(&mut self, threshold: f32) -> Result<()> { ... }
fn get_radiance(&self) -> Result<Mat> { ... } }

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

Loading content...

Provided methods

fn get_max_iter(&self) -> Result<i32>

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

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

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

fn get_radiance(&self) -> Result<Mat>

Loading content...

Implementors

Loading content...