[][src]Trait opencv::videostab::prelude::MotionEstimatorRansacL2Trait

pub trait MotionEstimatorRansacL2Trait: MotionEstimatorBase {
    pub fn as_raw_MotionEstimatorRansacL2(&self) -> *const c_void;
pub fn as_raw_mut_MotionEstimatorRansacL2(&mut self) -> *mut c_void; pub fn set_ransac_params(&mut self, val: &RansacParams) -> Result<()> { ... }
pub fn ransac_params(&self) -> Result<RansacParams> { ... }
pub fn set_min_inlier_ratio(&mut self, val: f32) -> Result<()> { ... }
pub fn min_inlier_ratio(&self) -> Result<f32> { ... }
pub fn estimate(
        &mut self,
        points0: &dyn ToInputArray,
        points1: &dyn ToInputArray,
        ok: &mut bool
    ) -> Result<Mat> { ... } }

Describes a robust RANSAC-based global 2D motion estimation method which minimizes L2 error.

Required methods

Loading content...

Provided methods

pub fn set_ransac_params(&mut self, val: &RansacParams) -> Result<()>[src]

pub fn ransac_params(&self) -> Result<RansacParams>[src]

pub fn set_min_inlier_ratio(&mut self, val: f32) -> Result<()>[src]

pub fn min_inlier_ratio(&self) -> Result<f32>[src]

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

Loading content...

Implementors

Loading content...