[][src]Trait opencv::photo::MergeDebevec

pub trait MergeDebevec: MergeExposures {
    fn as_raw_MergeDebevec(&self) -> *mut c_void;

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

The resulting HDR image is calculated as weighted average of the exposures considering exposure values and camera response.

For more information see DM97 .

Required methods

Loading content...

Provided methods

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

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

Loading content...

Implementors

Loading content...