pub trait MotionEstimatorBaseConst {
    // Required method
    fn as_raw_MotionEstimatorBase(&self) -> *const c_void;

    // Provided method
    fn motion_model(&self) -> Result<MotionModel> { ... }
}
Expand description

Required Methods§

Provided Methods§

source

fn motion_model(&self) -> Result<MotionModel>

Returns

Motion model. See cv::videostab::MotionModel.

Implementors§