[][src]Trait opencv::photo::CalibrateCRF

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

    fn process(
        &mut self,
        src: &VectorOfMat,
        dst: &mut Mat,
        times: &Mat
    ) -> Result<()> { ... } }

The base class for camera response calibration algorithms.

Required methods

Loading content...

Provided methods

fn process(
    &mut self,
    src: &VectorOfMat,
    dst: &mut Mat,
    times: &Mat
) -> Result<()>

Recovers inverse camera response.

Parameters

  • src: vector of input images
  • dst: 256x1 matrix with inverse camera response function
  • times: vector of exposure time values for each image
Loading content...

Implementors

Loading content...