pub trait StereoSGBMTraitConst: StereoMatcherTraitConst {
// Required method
fn as_raw_StereoSGBM(&self) -> *const c_void;
// Provided methods
fn get_pre_filter_cap(&self) -> Result<i32> { ... }
fn get_uniqueness_ratio(&self) -> Result<i32> { ... }
fn get_p1(&self) -> Result<i32> { ... }
fn get_p2(&self) -> Result<i32> { ... }
fn get_mode(&self) -> Result<i32> { ... }
}Expand description
Constant methods for crate::calib3d::StereoSGBM
Required Methods§
fn as_raw_StereoSGBM(&self) -> *const c_void
Provided Methods§
fn get_pre_filter_cap(&self) -> Result<i32>
fn get_uniqueness_ratio(&self) -> Result<i32>
fn get_p1(&self) -> Result<i32>
fn get_p2(&self) -> Result<i32>
fn get_mode(&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.