pub trait StereoBMConst: StereoMatcherConst {
    // 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§

Provided Methods§

Implementors§