[][src]Trait opencv::videostab::MotionEstimatorL1Trait

pub trait MotionEstimatorL1Trait: MotionEstimatorBase {
    pub fn as_raw_MotionEstimatorL1(&self) -> *const c_void;
pub fn as_raw_mut_MotionEstimatorL1(&mut self) -> *mut c_void; pub fn estimate(
        &mut self,
        points0: &dyn ToInputArray,
        points1: &dyn ToInputArray,
        ok: &mut bool
    ) -> Result<Mat> { ... } }

Describes a global 2D motion estimation method which minimizes L1 error.

Note: To be able to use this method you must build OpenCV with CLP library support. :

Required methods

Loading content...

Provided methods

pub fn estimate(
    &mut self,
    points0: &dyn ToInputArray,
    points1: &dyn ToInputArray,
    ok: &mut bool
) -> Result<Mat>
[src]

Loading content...

Implementors

impl MotionEstimatorL1Trait for MotionEstimatorL1[src]

Loading content...