C# Class OpenCvSharp.AKAZE

Class implementing the AKAZE keypoint detector and descriptor extractor, described in @cite ANB13
AKAZE descriptors can only be used with KAZE or AKAZE keypoints. Try to avoid using *extract* and *detect* instead of *operator()* due to performance reasons. .. [ANB13] Fast Explicit Diffusion for Accelerated Features in Nonlinear Scale Spaces. Pablo F. Alcantarilla, Jesús Nuevo and Adrien Bartoli. In British Machine Vision Conference (BMVC), Bristol, UK, September 2013.
Inheritance: Feature2D
Afficher le fichier Open project: shimat/opencvsharp Class Usage Examples

Private Properties

Свойство Type Description

Méthodes publiques

Méthode Description
Create ( OpenCvSharp descriptorType = OpenCvSharp.AKAZEDescriptorType.MLDB, int descriptorSize, int descriptorChannels = 3, float threshold = 0.001f, int nOctaves = 4, int nOctaveLayers = 4, KAZEDiffusivity diffusivity = KAZEDiffusivity.DiffPmG2 ) : AKAZE

The AKAZE constructor

Méthodes protégées

Méthode Description
AKAZE ( IntPtr p ) : System

Dispose ( bool disposing ) : void

Releases the resources

Method Details

AKAZE() protected méthode

protected AKAZE ( IntPtr p ) : System
p System.IntPtr
Résultat System

Create() public static méthode

The AKAZE constructor
public static Create ( OpenCvSharp descriptorType = OpenCvSharp.AKAZEDescriptorType.MLDB, int descriptorSize, int descriptorChannels = 3, float threshold = 0.001f, int nOctaves = 4, int nOctaveLayers = 4, KAZEDiffusivity diffusivity = KAZEDiffusivity.DiffPmG2 ) : AKAZE
descriptorType OpenCvSharp
descriptorSize int
descriptorChannels int
threshold float
nOctaves int
nOctaveLayers int
diffusivity KAZEDiffusivity
Résultat AKAZE

Dispose() protected méthode

Releases the resources
protected Dispose ( bool disposing ) : void
disposing bool /// If disposing equals true, the method has been called directly or indirectly by a user's code. Managed and unmanaged resources can be disposed. /// If false, the method has been called by the runtime from inside the finalizer and you should not reference other objects. Only unmanaged resources can be disposed. ///
Résultat void