Click or drag to resize

AKAZECreate Method

The AKAZE constructor

Namespace:  OpenCvSharp
Assembly:  OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0
Syntax
public static AKAZE Create(
	AKAZEDescriptorType descriptorType = AKAZEDescriptorType.MLDB,
	int descriptorSize = 0,
	int descriptorChannels = 3,
	float threshold = 0.001f,
	int nOctaves = 4,
	int nOctaveLayers = 4,
	KAZEDiffusivityType diffusivity = KAZEDiffusivityType.DiffPmG2
)

Parameters

descriptorType (Optional)
Type: OpenCvSharpAKAZEDescriptorType
Type of the extracted descriptor: DESCRIPTOR_KAZE, DESCRIPTOR_KAZE_UPRIGHT, DESCRIPTOR_MLDB or DESCRIPTOR_MLDB_UPRIGHT.
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: OpenCvSharpKAZEDiffusivityType
Diffusivity type. DIFF_PM_G1, DIFF_PM_G2, DIFF_WEICKERT or DIFF_CHARBONNIER

Return Value

Type: AKAZE

[Missing <returns> documentation for "M:OpenCvSharp.AKAZE.Create(OpenCvSharp.AKAZEDescriptorType,System.Int32,System.Int32,System.Single,System.Int32,System.Int32,OpenCvSharp.KAZEDiffusivityType)"]

See Also