Struct opencv::videostab::MotionEstimatorBase
source · pub struct MotionEstimatorBase { /* private fields */ }Expand description
Base class for all global motion estimation methods.
Trait Implementations§
source§impl Boxed for MotionEstimatorBase
impl Boxed for MotionEstimatorBase
source§unsafe fn from_raw(
ptr: <MotionEstimatorBase as OpenCVType<'_>>::ExternReceive
) -> Self
unsafe fn from_raw( ptr: <MotionEstimatorBase as OpenCVType<'_>>::ExternReceive ) -> Self
Wrap the specified raw pointer Read more
source§fn into_raw(
self
) -> <MotionEstimatorBase as OpenCVTypeExternContainer>::ExternSendMut
fn into_raw( self ) -> <MotionEstimatorBase as OpenCVTypeExternContainer>::ExternSendMut
Return the underlying raw pointer while consuming this wrapper. Read more
source§fn as_raw(
&self
) -> <MotionEstimatorBase as OpenCVTypeExternContainer>::ExternSend
fn as_raw( &self ) -> <MotionEstimatorBase as OpenCVTypeExternContainer>::ExternSend
Return the underlying raw pointer. Read more
source§fn as_raw_mut(
&mut self
) -> <MotionEstimatorBase as OpenCVTypeExternContainer>::ExternSendMut
fn as_raw_mut( &mut self ) -> <MotionEstimatorBase as OpenCVTypeExternContainer>::ExternSendMut
Return the underlying mutable raw pointer Read more
source§impl Debug for MotionEstimatorBase
impl Debug for MotionEstimatorBase
source§impl Drop for MotionEstimatorBase
impl Drop for MotionEstimatorBase
source§impl From<MotionEstimatorL1> for MotionEstimatorBase
impl From<MotionEstimatorL1> for MotionEstimatorBase
source§fn from(s: MotionEstimatorL1) -> Self
fn from(s: MotionEstimatorL1) -> Self
Converts to this type from the input type.
source§impl From<MotionEstimatorRansacL2> for MotionEstimatorBase
impl From<MotionEstimatorRansacL2> for MotionEstimatorBase
source§fn from(s: MotionEstimatorRansacL2) -> Self
fn from(s: MotionEstimatorRansacL2) -> Self
Converts to this type from the input type.
source§impl MotionEstimatorBaseTrait for MotionEstimatorBase
impl MotionEstimatorBaseTrait for MotionEstimatorBase
fn as_raw_mut_MotionEstimatorBase(&mut self) -> *mut c_void
source§fn set_motion_model(&mut self, val: MotionModel) -> Result<()>
fn set_motion_model(&mut self, val: MotionModel) -> Result<()>
Sets motion model. Read more
source§fn estimate(
&mut self,
points0: &impl ToInputArray,
points1: &impl ToInputArray,
ok: &mut bool
) -> Result<Mat>
fn estimate( &mut self, points0: &impl ToInputArray, points1: &impl ToInputArray, ok: &mut bool ) -> Result<Mat>
Estimates global motion between two 2D point clouds. Read more
source§fn estimate_def(
&mut self,
points0: &impl ToInputArray,
points1: &impl ToInputArray
) -> Result<Mat>
fn estimate_def( &mut self, points0: &impl ToInputArray, points1: &impl ToInputArray ) -> Result<Mat>
Estimates global motion between two 2D point clouds. Read more
source§impl MotionEstimatorBaseTraitConst for MotionEstimatorBase
impl MotionEstimatorBaseTraitConst for MotionEstimatorBase
fn as_raw_MotionEstimatorBase(&self) -> *const c_void
source§fn motion_model(&self) -> Result<MotionModel>
fn motion_model(&self) -> Result<MotionModel>
Returns Read more
impl Send for MotionEstimatorBase
Auto Trait Implementations§
impl Freeze for MotionEstimatorBase
impl RefUnwindSafe for MotionEstimatorBase
impl !Sync for MotionEstimatorBase
impl Unpin for MotionEstimatorBase
impl UnwindSafe for MotionEstimatorBase
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