pub trait StereoBMTraitConst: StereoMatcherTraitConst {
// Required method
fn as_raw_StereoBM(&self) -> *const c_void;
// Provided methods
fn get_pre_filter_type(&self) -> Result<i32> { ... }
fn get_pre_filter_size(&self) -> Result<i32> { ... }
fn get_pre_filter_cap(&self) -> Result<i32> { ... }
fn get_texture_threshold(&self) -> Result<i32> { ... }
fn get_uniqueness_ratio(&self) -> Result<i32> { ... }
fn get_smaller_block_size(&self) -> Result<i32> { ... }
fn get_roi1(&self) -> Result<Rect> { ... }
fn get_roi2(&self) -> Result<Rect> { ... }
}
Expand description
Constant methods for crate::calib3d::StereoBM
Required Methods§
fn as_raw_StereoBM(&self) -> *const c_void
Provided Methods§
fn get_pre_filter_type(&self) -> Result<i32>
fn get_pre_filter_size(&self) -> Result<i32>
fn get_pre_filter_cap(&self) -> Result<i32>
fn get_texture_threshold(&self) -> Result<i32>
fn get_uniqueness_ratio(&self) -> Result<i32>
fn get_smaller_block_size(&self) -> Result<i32>
fn get_roi1(&self) -> Result<Rect>
fn get_roi2(&self) -> Result<Rect>
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.