pub trait MergeRobertsonTrait: MergeExposuresTrait + MergeRobertsonTraitConst {
    // Required method
    fn as_raw_mut_MergeRobertson(&mut self) -> *mut c_void;

    // Provided methods
    fn process_with_response(
        &mut self,
        src: &impl ToInputArray,
        dst: &mut impl ToOutputArray,
        times: &impl ToInputArray,
        response: &impl ToInputArray
    ) -> Result<()> { ... }
    fn process(
        &mut self,
        src: &impl ToInputArray,
        dst: &mut impl ToOutputArray,
        times: &impl ToInputArray
    ) -> Result<()> { ... }
}
Expand description

Mutable methods for crate::photo::MergeRobertson

Required Methods§

Provided Methods§

source

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

source

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

Object Safety§

This trait is not object safe.

Implementors§