[][src]Trait opencv::hub_prelude::TwoPassStabilizerTrait

pub trait TwoPassStabilizerTrait: IFrameSource + StabilizerBase {
    pub fn as_raw_TwoPassStabilizer(&self) -> *const c_void;
pub fn as_raw_mut_TwoPassStabilizer(&mut self) -> *mut c_void; pub fn set_motion_stabilizer(
        &mut self,
        val: Ptr<dyn IMotionStabilizer>
    ) -> Result<()> { ... }
pub fn motion_stabilizer(&self) -> Result<Ptr<dyn IMotionStabilizer>> { ... }
pub fn set_wobble_suppressor(
        &mut self,
        val: Ptr<dyn WobbleSuppressorBase>
    ) -> Result<()> { ... }
pub fn wobble_suppressor(&self) -> Result<Ptr<dyn WobbleSuppressorBase>> { ... }
pub fn set_estimate_trim_ratio(&mut self, val: bool) -> Result<()> { ... }
pub fn must_estimate_trima_ratio(&self) -> Result<bool> { ... }
pub fn reset(&mut self) -> Result<()> { ... }
pub fn next_frame(&mut self) -> Result<Mat> { ... } }

Required methods

Loading content...

Provided methods

pub fn set_motion_stabilizer(
    &mut self,
    val: Ptr<dyn IMotionStabilizer>
) -> Result<()>
[src]

pub fn motion_stabilizer(&self) -> Result<Ptr<dyn IMotionStabilizer>>[src]

pub fn set_wobble_suppressor(
    &mut self,
    val: Ptr<dyn WobbleSuppressorBase>
) -> Result<()>
[src]

pub fn wobble_suppressor(&self) -> Result<Ptr<dyn WobbleSuppressorBase>>[src]

pub fn set_estimate_trim_ratio(&mut self, val: bool) -> Result<()>[src]

pub fn must_estimate_trima_ratio(&self) -> Result<bool>[src]

pub fn reset(&mut self) -> Result<()>[src]

pub fn next_frame(&mut self) -> Result<Mat>[src]

Loading content...

Implementors

impl TwoPassStabilizerTrait for TwoPassStabilizer[src]

Loading content...