pub trait StereoMatcherTraitConst: AlgorithmTraitConst {
// Required method
fn as_raw_StereoMatcher(&self) -> *const c_void;
// Provided methods
fn get_min_disparity(&self) -> Result<i32> { ... }
fn get_num_disparities(&self) -> Result<i32> { ... }
fn get_block_size(&self) -> Result<i32> { ... }
fn get_speckle_window_size(&self) -> Result<i32> { ... }
fn get_speckle_range(&self) -> Result<i32> { ... }
fn get_disp12_max_diff(&self) -> Result<i32> { ... }
}
Expand description
Constant methods for crate::calib3d::StereoMatcher
Required Methods§
fn as_raw_StereoMatcher(&self) -> *const c_void
Provided Methods§
fn get_min_disparity(&self) -> Result<i32>
fn get_num_disparities(&self) -> Result<i32>
fn get_block_size(&self) -> Result<i32>
fn get_speckle_window_size(&self) -> Result<i32>
fn get_speckle_range(&self) -> Result<i32>
fn get_disp12_max_diff(&self) -> Result<i32>
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.