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

pub trait Detail_SeamFinder {
    pub fn as_raw_Detail_SeamFinder(&self) -> *const c_void;
pub fn as_raw_mut_Detail_SeamFinder(&mut self) -> *mut c_void; pub 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

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

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...