pub trait MSERConst: Feature2DTraitConst {
    // Required method
    fn as_raw_MSER(&self) -> *const c_void;

    // Provided methods
    fn get_delta(&self) -> Result<i32> { ... }
    fn get_min_area(&self) -> Result<i32> { ... }
    fn get_max_area(&self) -> Result<i32> { ... }
    fn get_max_variation(&self) -> Result<f64> { ... }
    fn get_min_diversity(&self) -> Result<f64> { ... }
    fn get_max_evolution(&self) -> Result<i32> { ... }
    fn get_area_threshold(&self) -> Result<f64> { ... }
    fn get_min_margin(&self) -> Result<f64> { ... }
    fn get_edge_blur_size(&self) -> Result<i32> { ... }
    fn get_pass2_only(&self) -> Result<bool> { ... }
    fn get_default_name(&self) -> Result<String> { ... }
}
Expand description

Constant methods for crate::features2d::MSER

Required Methods§

Provided Methods§

Implementors§

source§

impl MSERConst for Ptr<dyn MSER>