[][src]Trait opencv::photo::MergeRobertson

pub trait MergeRobertson: MergeExposures {
    fn as_raw_MergeRobertson(&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 RB99 .

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...