pub trait LpMotionStabilizerTrait: IMotionStabilizer + LpMotionStabilizerTraitConst {
    fn as_raw_mut_LpMotionStabilizer(&mut self) -> *mut c_void;

    fn set_motion_model(&mut self, val: MotionModel) -> Result<()> { ... }
    fn set_frame_size(&mut self, val: Size) -> Result<()> { ... }
    fn set_trim_ratio(&mut self, val: f32) -> Result<()> { ... }
    fn set_weight1(&mut self, val: f32) -> Result<()> { ... }
    fn set_weight2(&mut self, val: f32) -> Result<()> { ... }
    fn set_weight3(&mut self, val: f32) -> Result<()> { ... }
    fn set_weight4(&mut self, val: f32) -> Result<()> { ... }
    fn stabilize(
        &mut self,
        size: i32,
        motions: &Vector<Mat>,
        range: &Range,
        stabilization_motions: &mut Mat
    ) -> Result<()> { ... } }

Required Methods

Provided Methods

Implementors