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

pub trait CalibrateRobertson: CalibrateCRF {
    pub fn as_raw_CalibrateRobertson(&self) -> *const c_void;
pub fn as_raw_mut_CalibrateRobertson(&mut self) -> *mut c_void; pub fn get_max_iter(&self) -> Result<i32> { ... }
pub fn set_max_iter(&mut self, max_iter: i32) -> Result<()> { ... }
pub fn get_threshold(&self) -> Result<f32> { ... }
pub fn set_threshold(&mut self, threshold: f32) -> Result<()> { ... }
pub 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

pub fn get_max_iter(&self) -> Result<i32>[src]

pub fn set_max_iter(&mut self, max_iter: i32) -> Result<()>[src]

pub fn get_threshold(&self) -> Result<f32>[src]

pub fn set_threshold(&mut self, threshold: f32) -> Result<()>[src]

pub fn get_radiance(&self) -> Result<Mat>[src]

Loading content...

Implementors

Loading content...