[][src]Struct opencv::stitching::Stitcher

pub struct Stitcher { /* fields omitted */ }

High level image stitcher.

It's possible to use this class without being aware of the entire stitching pipeline. However, to be able to achieve higher stitching stability and quality of the final images at least being familiar with the theory is recommended.

Note:

  • A basic example on image stitching can be found at opencv_source_code/samples/cpp/stitching.cpp
  • A basic example on image stitching in Python can be found at opencv_source_code/samples/python/stitching.py
  • A detailed example on image stitching can be found at opencv_source_code/samples/cpp/stitching_detailed.cpp

Implementations

impl Stitcher[src]

impl Stitcher[src]

pub const ORIG_RESOL: f64[src]

pub fn create(mode: Stitcher_Mode) -> Result<Ptr<Stitcher>>[src]

Creates a Stitcher configured in one of the stitching modes.

Parameters

  • mode: Scenario for stitcher operation. This is usually determined by source of images to stitch and their transformation. Default parameters will be chosen for operation in given scenario.

Returns

Stitcher class instance.

C++ default parameters

  • mode: Stitcher::PANORAMA

Trait Implementations

impl Boxed for Stitcher[src]

impl Drop for Stitcher[src]

impl Send for Stitcher[src]

impl StitcherTrait for Stitcher[src]

Auto Trait Implementations

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.