[−][src]Type Definition opencv::types::PtrOfInpainterBase
type PtrOfInpainterBase = Ptr<dyn InpainterBase>;
type PtrOfInpainterBase = Ptr<dyn InpainterBase>;
impl PtrOfInpainterBase
[src]pub fn as_raw_PtrOfInpainterBase(&self) -> *const c_void
[src]pub fn as_raw_mut_PtrOfInpainterBase(&mut self) -> *mut c_void
[src]impl InpainterBase for PtrOfInpainterBase
[src]fn as_raw_InpainterBase(&self) -> *const c_void
[src]fn as_raw_mut_InpainterBase(&mut self) -> *mut c_void
[src]fn set_radius(&mut self, val: i32) -> Result<()>
[src]fn radius(&self) -> Result<i32>
[src]fn set_motion_model(&mut self, val: MotionModel) -> Result<()>
[src]fn motion_model(&self) -> Result<MotionModel>
[src]fn inpaint(&mut self, idx: i32, frame: &mut Mat, mask: &mut Mat) -> Result<()>
[src]fn set_frames(&mut self, val: &Vector<Mat>) -> Result<()>
[src]fn frames(&self) -> Result<Vector<Mat>>
[src]fn set_motions(&mut self, val: &Vector<Mat>) -> Result<()>
[src]fn motions(&self) -> Result<Vector<Mat>>
[src]fn set_stabilized_frames(&mut self, val: &Vector<Mat>) -> Result<()>
[src]fn stabilized_frames(&self) -> Result<Vector<Mat>>
[src]fn set_stabilization_motions(&mut self, val: &Vector<Mat>) -> Result<()>
[src]fn stabilization_motions(&self) -> Result<Vector<Mat>>
[src]