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
Constant methods for crate::cudastereo::CUDA_DisparityBilateralFilter
Required Methods§
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>
Sourcefn get_edge_threshold(&self) -> Result<f64>
fn get_edge_threshold(&self) -> Result<f64>
truncation of data continuity
Sourcefn get_max_disc_threshold(&self) -> Result<f64>
fn get_max_disc_threshold(&self) -> Result<f64>
truncation of disparity continuity
Sourcefn get_sigma_range(&self) -> Result<f64>
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.