Click or drag to resize

AKAZE Constructor

http://www.emgu.com
Create AKAZE using the specific values

Namespace:  Emgu.CV.Features2D
Assembly:  Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.0.3408 (4.1.0.3408)
Syntax
public AKAZE(
	AKAZEDescriptorType descriptorType = AKAZEDescriptorType.Mldb,
	int descriptorSize = 0,
	int descriptorChannels = 3,
	float threshold = 0.001f,
	int nOctaves = 4,
	int nOctaveLayers = 4,
	KAZEDiffusivity diffusivity = KAZEDiffusivity.PmG2
)

Parameters

descriptorType (Optional)
Type: Emgu.CV.Features2DAKAZEDescriptorType
Type of the extracted descriptor
descriptorSize (Optional)
Type: SystemInt32
Size of the descriptor in bits. 0 -> Full size
descriptorChannels (Optional)
Type: SystemInt32
Number of channels in the descriptor (1, 2, 3)
threshold (Optional)
Type: SystemSingle
Detector response threshold to accept point
nOctaves (Optional)
Type: SystemInt32
Maximum octave evolution of the image
nOctaveLayers (Optional)
Type: SystemInt32
Default number of sublevels per scale level
diffusivity (Optional)
Type: Emgu.CV.Features2DKAZEDiffusivity
Diffusivity type
See Also