pub trait MergeDebevec: MergeDebevecConst + MergeExposures {
    // Required method
    fn as_raw_mut_MergeDebevec(&mut self) -> *mut c_void;

    // 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<()> { ... }
}
Expand description

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§

Provided Methods§

source

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

source

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

Implementors§