#[repr(C)]pub enum Stitcher_Mode {
PANORAMA = 0,
SCANS = 1,
}
Variants§
PANORAMA = 0
Mode for creating photo panoramas. Expects images under perspective transformation and projects resulting pano to sphere.
§See also
detail::BestOf2NearestMatcher SphericalWarper
SCANS = 1
Mode for composing scans. Expects images under affine transformation does not compensate exposure by default.
§See also
detail::AffineBestOf2NearestMatcher AffineWarper
Trait Implementations§
Source§impl Clone for Stitcher_Mode
impl Clone for Stitcher_Mode
Source§fn clone(&self) -> Stitcher_Mode
fn clone(&self) -> Stitcher_Mode
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for Stitcher_Mode
impl Debug for Stitcher_Mode
Source§impl From<Stitcher_Mode> for i32
impl From<Stitcher_Mode> for i32
Source§fn from(v: Stitcher_Mode) -> Self
fn from(v: Stitcher_Mode) -> Self
Converts to this type from the input type.
Source§impl PartialEq for Stitcher_Mode
impl PartialEq for Stitcher_Mode
Source§impl TryFrom<i32> for Stitcher_Mode
impl TryFrom<i32> for Stitcher_Mode
impl Copy for Stitcher_Mode
impl Eq for Stitcher_Mode
impl StructuralPartialEq for Stitcher_Mode
Auto Trait Implementations§
impl Freeze for Stitcher_Mode
impl RefUnwindSafe for Stitcher_Mode
impl Send for Stitcher_Mode
impl Sync for Stitcher_Mode
impl Unpin for Stitcher_Mode
impl UnwindSafe for Stitcher_Mode
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more