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

    // Provided methods
    fn get_num_octaves(&self) -> Result<i32> { ... }
    fn get_corn_thresh(&self) -> Result<f32> { ... }
    fn get_dog_thresh(&self) -> Result<f32> { ... }
    fn get_max_corners(&self) -> Result<i32> { ... }
    fn get_num_layers(&self) -> Result<i32> { ... }
    fn get_default_name(&self) -> Result<String> { ... }
}
Expand description

Required Methods§

Provided Methods§

Implementors§