Struct opencv::videostab::StabilizerBase
source · pub struct StabilizerBase { /* private fields */ }
Trait Implementations§
source§impl Boxed for StabilizerBase
impl Boxed for StabilizerBase
source§impl Debug for StabilizerBase
impl Debug for StabilizerBase
source§impl Drop for StabilizerBase
impl Drop for StabilizerBase
source§impl From<OnePassStabilizer> for StabilizerBase
impl From<OnePassStabilizer> for StabilizerBase
source§fn from(s: OnePassStabilizer) -> Self
fn from(s: OnePassStabilizer) -> Self
Converts to this type from the input type.
source§impl From<TwoPassStabilizer> for StabilizerBase
impl From<TwoPassStabilizer> for StabilizerBase
source§fn from(s: TwoPassStabilizer) -> Self
fn from(s: TwoPassStabilizer) -> Self
Converts to this type from the input type.
source§impl StabilizerBaseTrait for StabilizerBase
impl StabilizerBaseTrait for StabilizerBase
fn as_raw_mut_StabilizerBase(&mut self) -> *mut c_void
fn set_log(&mut self, ilog: Ptr<ILog>) -> Result<()>
fn set_radius(&mut self, val: i32) -> Result<()>
fn set_frame_source(&mut self, val: Ptr<IFrameSource>) -> Result<()>
fn set_mask_source(&mut self, val: &Ptr<IFrameSource>) -> Result<()>
fn set_motion_estimator( &mut self, val: Ptr<ImageMotionEstimatorBase> ) -> Result<()>
fn set_deblurer(&mut self, val: Ptr<DeblurerBase>) -> Result<()>
fn set_trim_ratio(&mut self, val: f32) -> Result<()>
fn set_correction_for_inclusion(&mut self, val: bool) -> Result<()>
fn set_border_mode(&mut self, val: i32) -> Result<()>
fn set_inpainter(&mut self, val: Ptr<InpainterBase>) -> Result<()>
source§impl StabilizerBaseTraitConst for StabilizerBase
impl StabilizerBaseTraitConst for StabilizerBase
fn as_raw_StabilizerBase(&self) -> *const c_void
fn log(&self) -> Result<Ptr<ILog>>
fn radius(&self) -> Result<i32>
fn frame_source(&self) -> Result<Ptr<IFrameSource>>
fn mask_source(&self) -> Result<Ptr<IFrameSource>>
fn motion_estimator(&self) -> Result<Ptr<ImageMotionEstimatorBase>>
fn deblurrer(&self) -> Result<Ptr<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<InpainterBase>>
source§impl TryFrom<StabilizerBase> for OnePassStabilizer
impl TryFrom<StabilizerBase> for OnePassStabilizer
source§impl TryFrom<StabilizerBase> for TwoPassStabilizer
impl TryFrom<StabilizerBase> for TwoPassStabilizer
impl Send for StabilizerBase
Auto Trait Implementations§
impl RefUnwindSafe for StabilizerBase
impl !Sync for StabilizerBase
impl Unpin for StabilizerBase
impl UnwindSafe for StabilizerBase
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more