[][src]Trait opencv::stitching::prelude::Detail_SeamFinder

pub trait Detail_SeamFinder {
    fn as_raw_Detail_SeamFinder(&self) -> *const c_void;
fn as_raw_mut_Detail_SeamFinder(&mut self) -> *mut c_void; fn find(
        &mut self,
        src: &Vector<UMat>,
        corners: &Vector<Point>,
        masks: &mut Vector<UMat>
    ) -> Result<()> { ... } }

Base class for a seam estimator.

Required methods

Loading content...

Provided methods

fn find(
    &mut self,
    src: &Vector<UMat>,
    corners: &Vector<Point>,
    masks: &mut Vector<UMat>
) -> Result<()>

Estimates seams.

Parameters

  • src: Source images
  • corners: Source image top-left corners
  • masks: Source image masks to update
Loading content...

Implementations

impl<'_> dyn Detail_SeamFinder + '_[src]

Implementors

Loading content...