[][src]Trait opencv::photo::AlignExposures

pub trait AlignExposures: AlgorithmTrait {
    fn as_raw_AlignExposures(&self) -> *mut c_void;

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

The base class for algorithms that align images of the same scene with different exposures

Required methods

Loading content...

Provided methods

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

Aligns images

Parameters

  • src: vector of input images
  • dst: vector of aligned images
  • times: vector of exposure time values for each image
  • response: 256x1 matrix with inverse camera response function for each pixel value, it should have the same number of channels as images.
Loading content...

Implementors

impl AlignExposures for PtrOfAlignMTB[src]

Loading content...