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

Provided Methods§

Implementors§