pub trait KeypointBasedMotionEstimatorTrait: ImageMotionEstimatorBase + KeypointBasedMotionEstimatorTraitConst {
    fn as_raw_mut_KeypointBasedMotionEstimator(&mut self) -> *mut c_void;

    fn set_motion_model(&mut self, val: MotionModel) -> Result<()> { ... }
    fn set_detector(&mut self, val: Ptr<Feature2D>) -> Result<()> { ... }
    fn set_optical_flow_estimator(
        &mut self,
        val: Ptr<dyn ISparseOptFlowEstimator>
    ) -> Result<()> { ... } fn set_outlier_rejector(
        &mut self,
        val: Ptr<dyn IOutlierRejector>
    ) -> Result<()> { ... } fn set_frame_mask(&mut self, mask: &dyn ToInputArray) -> Result<()> { ... } fn estimate_mat(
        &mut self,
        frame0: &Mat,
        frame1: &Mat,
        ok: &mut bool
    ) -> Result<Mat> { ... } fn estimate(
        &mut self,
        frame0: &dyn ToInputArray,
        frame1: &dyn ToInputArray,
        ok: &mut bool
    ) -> Result<Mat> { ... } }
Expand description

Required Methods§

Provided Methods§

source

fn set_motion_model(&mut self, val: MotionModel) -> Result<()>

source

fn set_detector(&mut self, val: Ptr<Feature2D>) -> Result<()>

source

fn set_optical_flow_estimator(
    &mut self,
    val: Ptr<dyn ISparseOptFlowEstimator>
) -> Result<()>

source

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

source

fn set_frame_mask(&mut self, mask: &dyn ToInputArray) -> Result<()>

source

fn estimate_mat(
    &mut self,
    frame0: &Mat,
    frame1: &Mat,
    ok: &mut bool
) -> Result<Mat>

source

fn estimate(
    &mut self,
    frame0: &dyn ToInputArray,
    frame1: &dyn ToInputArray,
    ok: &mut bool
) -> Result<Mat>

Implementors§