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§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 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