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

pub trait AlignExposures: AlgorithmTrait {
    pub fn as_raw_AlignExposures(&self) -> *const c_void;
pub fn as_raw_mut_AlignExposures(&mut self) -> *mut c_void; pub fn process(
        &mut self,
        src: &dyn ToInputArray,
        dst: &mut Vector<Mat>,
        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

pub fn process(
    &mut self,
    src: &dyn ToInputArray,
    dst: &mut Vector<Mat>,
    times: &dyn ToInputArray,
    response: &dyn ToInputArray
) -> Result<()>
[src]

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

Loading content...