pub trait MergeMertens: MergeExposures + MergeMertensConst {
    fn as_raw_mut_MergeMertens(&mut 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
    ) -> Result<()> { ... } fn set_contrast_weight(&mut self, contrast_weiht: f32) -> Result<()> { ... } fn set_saturation_weight(&mut self, saturation_weight: f32) -> Result<()> { ... } fn set_exposure_weight(&mut self, exposure_weight: f32) -> Result<()> { ... } }

Required Methods§

Provided Methods§

Short version of process, that doesn’t take extra arguments.

Parameters
  • src: vector of input images
  • dst: result image

Implementors§