pub trait RgbdPlaneTraitConst: AlgorithmTraitConst {
    fn as_raw_RgbdPlane(&self) -> *const c_void;

    fn get_block_size(&self) -> Result<i32> { ... }
    fn get_min_size(&self) -> Result<i32> { ... }
    fn get_method(&self) -> Result<i32> { ... }
    fn get_threshold(&self) -> Result<f64> { ... }
    fn get_sensor_error_a(&self) -> Result<f64> { ... }
    fn get_sensor_error_b(&self) -> Result<f64> { ... }
    fn get_sensor_error_c(&self) -> Result<f64> { ... }
}
Expand description

Object that can compute planes in an image

Required Methods

Provided Methods

Implementors