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

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

    fn process_with_response(
        &mut self,
        src: &dyn ToInputArray,
        dst: &mut dyn ToOutputArray,
        times: &dyn ToInputArray,
        response: &dyn ToInputArray
    ) -> Result<()> { ... }
fn process(
        &mut self,
        src: &dyn ToInputArray,
        dst: &mut dyn ToOutputArray,
        times: &dyn ToInputArray
    ) -> 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: &dyn ToInputArray,
    dst: &mut dyn ToOutputArray,
    times: &dyn ToInputArray,
    response: &dyn ToInputArray
) -> Result<()>

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

Loading content...

Implementors

Loading content...