[][src]Trait opencv::photo::CalibrateDebevec

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

    fn get_lambda(&self) -> Result<f32> { ... }
fn set_lambda(&mut self, lambda: f32) -> Result<()> { ... }
fn get_samples(&self) -> Result<i32> { ... }
fn set_samples(&mut self, samples: i32) -> Result<()> { ... }
fn get_random(&self) -> Result<bool> { ... }
fn set_random(&mut self, random: bool) -> Result<()> { ... } }

Inverse camera response function is extracted for each brightness value by minimizing an objective function as linear system. Objective function is constructed using pixel values on the same position in all images, extra term is added to make the result smoother.

For more information see DM97 .

Required methods

Loading content...

Provided methods

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

fn set_lambda(&mut self, lambda: f32) -> Result<()>

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

fn set_samples(&mut self, samples: i32) -> Result<()>

fn get_random(&self) -> Result<bool>

fn set_random(&mut self, random: bool) -> Result<()>

Loading content...

Implementors

Loading content...