[][src]Trait opencv::videostab::MotionInpainterTrait

pub trait MotionInpainterTrait: InpainterBase {
    pub fn as_raw_MotionInpainter(&self) -> *const c_void;
pub fn as_raw_mut_MotionInpainter(&mut self) -> *mut c_void; pub fn set_opt_flow_estimator(
        &mut self,
        val: Ptr<dyn IDenseOptFlowEstimator>
    ) -> Result<()> { ... }
pub fn opt_flow_estimator(&self) -> Result<Ptr<dyn IDenseOptFlowEstimator>> { ... }
pub fn set_flow_error_threshold(&mut self, val: f32) -> Result<()> { ... }
pub fn flow_error_threshold(&self) -> Result<f32> { ... }
pub fn set_dist_threshold(&mut self, val: f32) -> Result<()> { ... }
pub fn dist_thresh(&self) -> Result<f32> { ... }
pub fn set_border_mode(&mut self, val: i32) -> Result<()> { ... }
pub fn border_mode(&self) -> Result<i32> { ... }
pub fn inpaint(
        &mut self,
        idx: i32,
        frame: &mut Mat,
        mask: &mut Mat
    ) -> Result<()> { ... } }

Required methods

Loading content...

Provided methods

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

pub fn opt_flow_estimator(&self) -> Result<Ptr<dyn IDenseOptFlowEstimator>>[src]

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

pub fn flow_error_threshold(&self) -> Result<f32>[src]

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

pub fn dist_thresh(&self) -> Result<f32>[src]

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

pub fn border_mode(&self) -> Result<i32>[src]

pub fn inpaint(
    &mut self,
    idx: i32,
    frame: &mut Mat,
    mask: &mut Mat
) -> Result<()>
[src]

Loading content...

Implementors

impl MotionInpainterTrait for MotionInpainter[src]

Loading content...