[][src]Trait opencv::videostab::KeypointBasedMotionEstimatorGpuTrait

pub trait KeypointBasedMotionEstimatorGpuTrait: ImageMotionEstimatorBase {
    pub fn as_raw_KeypointBasedMotionEstimatorGpu(&self) -> *const c_void;
pub fn as_raw_mut_KeypointBasedMotionEstimatorGpu(&mut self) -> *mut c_void; pub fn set_motion_model(&mut self, val: MotionModel) -> Result<()> { ... }
pub fn motion_model(&self) -> Result<MotionModel> { ... }
pub fn set_outlier_rejector(
        &mut self,
        val: Ptr<dyn IOutlierRejector>
    ) -> Result<()> { ... }
pub fn outlier_rejector(&self) -> Result<Ptr<dyn IOutlierRejector>> { ... }
pub fn estimate(
        &mut self,
        frame0: &Mat,
        frame1: &Mat,
        ok: &mut bool
    ) -> Result<Mat> { ... }
pub fn estimate_1(
        &mut self,
        frame0: &GpuMat,
        frame1: &GpuMat,
        ok: &mut bool
    ) -> Result<Mat> { ... } }

Required methods

Loading content...

Provided methods

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

pub fn motion_model(&self) -> Result<MotionModel>[src]

pub fn set_outlier_rejector(
    &mut self,
    val: Ptr<dyn IOutlierRejector>
) -> Result<()>
[src]

pub fn outlier_rejector(&self) -> Result<Ptr<dyn IOutlierRejector>>[src]

pub fn estimate(
    &mut self,
    frame0: &Mat,
    frame1: &Mat,
    ok: &mut bool
) -> Result<Mat>
[src]

pub fn estimate_1(
    &mut self,
    frame0: &GpuMat,
    frame1: &GpuMat,
    ok: &mut bool
) -> Result<Mat>
[src]

Loading content...

Implementors

Loading content...