Trait CUDA_DisparityBilateralFilterTraitConst

Source
pub trait CUDA_DisparityBilateralFilterTraitConst: AlgorithmTraitConst {
    // Required method
    fn as_raw_CUDA_DisparityBilateralFilter(&self) -> *const c_void;

    // Provided methods
    fn get_num_disparities(&self) -> Result<i32> { ... }
    fn get_radius(&self) -> Result<i32> { ... }
    fn get_num_iters(&self) -> Result<i32> { ... }
    fn get_edge_threshold(&self) -> Result<f64> { ... }
    fn get_max_disc_threshold(&self) -> Result<f64> { ... }
    fn get_sigma_range(&self) -> Result<f64> { ... }
}
Expand description

Required Methods§

Provided Methods§

Source

fn get_num_disparities(&self) -> Result<i32>

Source

fn get_radius(&self) -> Result<i32>

Source

fn get_num_iters(&self) -> Result<i32>

Source

fn get_edge_threshold(&self) -> Result<f64>

truncation of data continuity

Source

fn get_max_disc_threshold(&self) -> Result<f64>

truncation of disparity continuity

Source

fn get_sigma_range(&self) -> Result<f64>

filter range sigma

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§