pub trait Detail_MultiBandBlenderTrait: Detail_BlenderTrait + Detail_MultiBandBlenderTraitConst {
// Required method
fn as_raw_mut_Detail_MultiBandBlender(&mut self) -> *mut c_void;
// Provided methods
fn set_num_bands(&mut self, val: i32) -> Result<()> { ... }
fn prepare(&mut self, dst_roi: Rect) -> Result<()> { ... }
fn feed(
&mut self,
img: &impl ToInputArray,
mask: &impl ToInputArray,
tl: Point,
) -> Result<()> { ... }
fn blend(
&mut self,
dst: &mut impl ToInputOutputArray,
dst_mask: &mut impl ToInputOutputArray,
) -> Result<()> { ... }
}Expand description
Mutable methods for crate::stitching::Detail_MultiBandBlender
Required Methods§
fn as_raw_mut_Detail_MultiBandBlender(&mut self) -> *mut c_void
Provided Methods§
fn set_num_bands(&mut self, val: i32) -> Result<()>
fn prepare(&mut self, dst_roi: Rect) -> Result<()>
fn feed( &mut self, img: &impl ToInputArray, mask: &impl ToInputArray, tl: Point, ) -> Result<()>
fn blend( &mut self, dst: &mut impl ToInputOutputArray, dst_mask: &mut impl ToInputOutputArray, ) -> Result<()>
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.