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

    // Provided methods
    fn radius(&self) -> Result<i32> { ... }
    fn motion_model(&self) -> Result<MotionModel> { ... }
    fn frames(&self) -> Result<Vector<Mat>> { ... }
    fn motions(&self) -> Result<Vector<Mat>> { ... }
    fn stabilized_frames(&self) -> Result<Vector<Mat>> { ... }
    fn stabilization_motions(&self) -> Result<Vector<Mat>> { ... }
}
Expand description

Constant methods for crate::videostab::InpainterBase

Required Methods§

Provided Methods§

Implementors§