[][src]Trait opencv::prelude::DepthCleanerTrait

pub trait DepthCleanerTrait: AlgorithmTrait {
    pub fn as_raw_DepthCleaner(&self) -> *const c_void;
pub fn as_raw_mut_DepthCleaner(&mut self) -> *mut c_void; pub fn initialize(&self) -> Result<()> { ... }
pub fn get_window_size(&self) -> Result<i32> { ... }
pub fn set_window_size(&mut self, val: i32) -> Result<()> { ... }
pub fn get_depth(&self) -> Result<i32> { ... }
pub fn set_depth(&mut self, val: i32) -> Result<()> { ... }
pub fn get_method(&self) -> Result<i32> { ... }
pub fn set_method(&mut self, val: i32) -> Result<()> { ... } }

Object that can clean a noisy depth image

Required methods

Loading content...

Provided methods

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

Initializes some data that is cached for later computation If that function is not called, it will be called the first time normals are computed

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

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

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

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

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

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

Loading content...

Implementors

impl DepthCleanerTrait for DepthCleaner[src]

impl DepthCleanerTrait for PtrOfDepthCleaner[src]

Loading content...