pub trait KAZEConst: Feature2DTraitConst {
    fn as_raw_KAZE(&self) -> *const c_void;

    fn get_extended(&self) -> Result<bool> { ... }
    fn get_upright(&self) -> Result<bool> { ... }
    fn get_threshold(&self) -> Result<f64> { ... }
    fn get_n_octaves(&self) -> Result<i32> { ... }
    fn get_n_octave_layers(&self) -> Result<i32> { ... }
    fn get_diffusivity(&self) -> Result<KAZE_DiffusivityType> { ... }
    fn get_default_name(&self) -> Result<String> { ... }
}
Expand description

Class implementing the KAZE keypoint detector and descriptor extractor, described in ABD12 .

Note: AKAZE descriptor can only be used with KAZE or AKAZE keypoints .. [ABD12] KAZE Features. Pablo F. Alcantarilla, Adrien Bartoli and Andrew J. Davison. In European Conference on Computer Vision (ECCV), Fiorenze, Italy, October 2012.

Required Methods

Provided Methods

Implementors