pub trait MotionFilterBase: IMotionStabilizer + MotionFilterBaseConst {
    // Required method
    fn as_raw_mut_MotionFilterBase(&mut self) -> *mut c_void;

    // Provided methods
    fn stabilize(
        &mut self,
        idx: i32,
        motions: &Vector<Mat>,
        range: &Range
    ) -> Result<Mat> { ... }
    fn stabilize_1(
        &mut self,
        size: i32,
        motions: &Vector<Mat>,
        range: &Range,
        stabilization_motions: &mut Mat
    ) -> Result<()> { ... }
}

Required Methods§

Provided Methods§

source

fn stabilize( &mut self, idx: i32, motions: &Vector<Mat>, range: &Range ) -> Result<Mat>

source

fn stabilize_1( &mut self, size: i32, motions: &Vector<Mat>, range: &Range, stabilization_motions: &mut Mat ) -> Result<()>

Implementors§