[][src]Struct opencv::types::StitcherRefMut

pub struct StitcherRefMut<'o> { /* fields omitted */ }

Methods from Deref<Target = Stitcher>

pub fn registration_resol(&self) -> Result<f64>[src]

pub fn set_registration_resol(&mut self, resol_mpx: f64) -> Result<()>[src]

pub fn seam_estimation_resol(&self) -> Result<f64>[src]

pub fn set_seam_estimation_resol(&mut self, resol_mpx: f64) -> Result<()>[src]

pub fn compositing_resol(&self) -> Result<f64>[src]

pub fn set_compositing_resol(&mut self, resol_mpx: f64) -> Result<()>[src]

pub fn pano_confidence_thresh(&self) -> Result<f64>[src]

pub fn set_pano_confidence_thresh(&mut self, conf_thresh: f64) -> Result<()>[src]

pub fn wave_correction(&self) -> Result<bool>[src]

pub fn set_wave_correction(&mut self, flag: bool) -> Result<()>[src]

pub fn interpolation_flags(&self) -> Result<InterpolationFlags>[src]

pub fn set_interpolation_flags(
    &mut self,
    interp_flags: InterpolationFlags
) -> Result<()>
[src]

pub fn features_finder(&mut self) -> Result<PtrOfFeature2D>[src]

pub fn features_finder_1(&self) -> Result<PtrOfFeature2D>[src]

pub fn set_features_finder(
    &mut self,
    features_finder: &PtrOfFeature2D
) -> Result<()>
[src]

pub fn matching_mask(&self) -> Result<UMat>[src]

pub fn set_matching_mask(&mut self, mask: &UMat) -> Result<()>[src]

pub fn estimate_transform(
    &mut self,
    images: &dyn ToInputArray,
    masks: &dyn ToInputArray
) -> Result<Stitcher_Status>
[src]

These functions try to match the given images and to estimate rotations of each camera.

Note: Use the functions only if you're aware of the stitching pipeline, otherwise use Stitcher::stitch.

Parameters

  • images: Input images.
  • masks: Masks for each input image specifying where to look for keypoints (optional).

Returns

Status code.

C++ default parameters

  • masks: noArray()

pub fn compose_panorama(
    &mut self,
    pano: &mut dyn ToOutputArray
) -> Result<Stitcher_Status>
[src]

pub fn compose_panorama_images(
    &mut self,
    images: &dyn ToInputArray,
    pano: &mut dyn ToOutputArray
) -> Result<Stitcher_Status>
[src]

These functions try to compose the given images (or images stored internally from the other function calls) into the final pano under the assumption that the image transformations were estimated before.

Note: Use the functions only if you're aware of the stitching pipeline, otherwise use Stitcher::stitch.

Parameters

  • images: Input images.
  • pano: Final pano.

Returns

Status code.

pub fn stitch(
    &mut self,
    images: &dyn ToInputArray,
    pano: &mut dyn ToOutputArray
) -> Result<Stitcher_Status>
[src]

pub fn stitch_mask(
    &mut self,
    images: &dyn ToInputArray,
    masks: &dyn ToInputArray,
    pano: &mut dyn ToOutputArray
) -> Result<Stitcher_Status>
[src]

These functions try to stitch the given images.

Parameters

  • images: Input images.
  • masks: Masks for each input image specifying where to look for keypoints (optional).
  • pano: Final pano.

Returns

Status code.

pub fn component(&self) -> Result<VectorOfint>[src]

pub fn work_scale(&self) -> Result<f64>[src]

pub fn result_mask(&self) -> Result<UMat>[src]

Trait Implementations

impl<'_> Deref for StitcherRefMut<'_>[src]

type Target = Stitcher

The resulting type after dereferencing.

impl<'_> DerefMut for StitcherRefMut<'_>[src]

Auto Trait Implementations

impl<'o> RefUnwindSafe for StitcherRefMut<'o>

impl<'o> Send for StitcherRefMut<'o>

impl<'o> !Sync for StitcherRefMut<'o>

impl<'o> Unpin for StitcherRefMut<'o>

impl<'o> !UnwindSafe for StitcherRefMut<'o>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.