Enum opencv::videostab::MotionModel
source · #[repr(C)]pub enum MotionModel {
MM_TRANSLATION,
MM_TRANSLATION_AND_SCALE,
MM_ROTATION,
MM_RIGID,
MM_SIMILARITY,
MM_AFFINE,
MM_HOMOGRAPHY,
MM_UNKNOWN,
}
Expand description
Describes motion model between two point clouds.
Variants§
MM_TRANSLATION
MM_TRANSLATION_AND_SCALE
MM_ROTATION
MM_RIGID
MM_SIMILARITY
MM_AFFINE
MM_HOMOGRAPHY
MM_UNKNOWN
Trait Implementations§
source§impl Clone for MotionModel
impl Clone for MotionModel
source§fn clone(&self) -> MotionModel
fn clone(&self) -> MotionModel
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 MotionModel
impl Debug for MotionModel
source§impl PartialEq<MotionModel> for MotionModel
impl PartialEq<MotionModel> for MotionModel
source§fn eq(&self, other: &MotionModel) -> bool
fn eq(&self, other: &MotionModel) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for MotionModel
impl Eq for MotionModel
impl StructuralEq for MotionModel
impl StructuralPartialEq for MotionModel
Auto Trait Implementations§
impl RefUnwindSafe for MotionModel
impl Send for MotionModel
impl Sync for MotionModel
impl Unpin for MotionModel
impl UnwindSafe for MotionModel
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