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

    // Provided methods
    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

Constant methods for crate::rgbd::RgbdPlane

Required Methods§

Provided Methods§

Object Safety§

This trait is not object safe.

Implementors§