Trait opencv::prelude::WobbleSuppressorBase [−][src]
pub trait WobbleSuppressorBase {
Show 13 methods
fn as_raw_WobbleSuppressorBase(&self) -> *const c_void;
fn as_raw_mut_WobbleSuppressorBase(&mut self) -> *mut c_void;
fn set_motion_estimator(
&mut self,
val: Ptr<dyn ImageMotionEstimatorBase>
) -> Result<()> { ... }
fn motion_estimator(&self) -> Result<Ptr<dyn ImageMotionEstimatorBase>> { ... }
fn suppress(
&mut self,
idx: i32,
frame: &Mat,
result: &mut Mat
) -> Result<()> { ... }
fn set_frame_count(&mut self, val: i32) -> Result<()> { ... }
fn frame_count(&self) -> Result<i32> { ... }
fn set_motions(&mut self, val: &Vector<Mat>) -> Result<()> { ... }
fn motions(&self) -> Result<Vector<Mat>> { ... }
fn set_motions2(&mut self, val: &Vector<Mat>) -> Result<()> { ... }
fn motions2(&self) -> Result<Vector<Mat>> { ... }
fn set_stabilization_motions(&mut self, val: &Vector<Mat>) -> Result<()> { ... }
fn stabilization_motions(&self) -> Result<Vector<Mat>> { ... }
}