pub trait AlignExposuresTrait: AlgorithmTrait + AlignExposuresTraitConst {
// Required method
fn as_raw_mut_AlignExposures(&mut self) -> *mut c_void;
// Provided method
fn process(
&mut self,
src: &impl ToInputArray,
dst: &mut Vector<Mat>,
times: &impl ToInputArray,
response: &impl ToInputArray,
) -> Result<()> { ... }
}
Expand description
Mutable methods for crate::photo::AlignExposures
Required Methods§
fn as_raw_mut_AlignExposures(&mut self) -> *mut c_void
Provided Methods§
Sourcefn process(
&mut self,
src: &impl ToInputArray,
dst: &mut Vector<Mat>,
times: &impl ToInputArray,
response: &impl ToInputArray,
) -> Result<()>
fn process( &mut self, src: &impl ToInputArray, dst: &mut Vector<Mat>, times: &impl ToInputArray, response: &impl ToInputArray, ) -> Result<()>
Aligns images
§Parameters
- src: vector of input images
- dst: vector of aligned images
- times: vector of exposure time values for each image
- response: 256x1 matrix with inverse camera response function for each pixel value, it should have the same number of channels as images.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.