pub trait StabilizerBaseConst {
    fn as_raw_StabilizerBase(&self) -> *const c_void;

    fn log(&self) -> Result<Ptr<dyn ILog>> { ... }
    fn radius(&self) -> Result<i32> { ... }
    fn frame_source(&self) -> Result<Ptr<dyn IFrameSource>> { ... }
    fn mask_source(&self) -> Result<Ptr<dyn IFrameSource>> { ... }
    fn motion_estimator(&self) -> Result<Ptr<dyn ImageMotionEstimatorBase>> { ... }
    fn deblurrer(&self) -> Result<Ptr<dyn DeblurerBase>> { ... }
    fn trim_ratio(&self) -> Result<f32> { ... }
    fn do_correction_for_inclusion(&self) -> Result<bool> { ... }
    fn border_mode(&self) -> Result<i32> { ... }
    fn inpainter(&self) -> Result<Ptr<dyn InpainterBase>> { ... }
}

Required Methods

Provided Methods

Implementors