http://www.emgu.com
Create AKAZE using the specific values
Namespace: Emgu.CV.Features2DAssembly: Emgu.CV (in Emgu.CV.dll) Version: 3.0.0.2161 (3.0.0.2161)
Syntaxpublic AKAZE(
AKAZEDescriptorType descriptorType = AKAZEDescriptorType.Mldb,
int descriptorSize = 0,
int descriptorChannels = 3,
float threshold = 0.001f,
int octaves = 4,
int sublevels = 4,
KAZEDiffusivity diffusivity = KAZEDiffusivity.PmG2
)
Public Sub New (
Optional descriptorType As AKAZEDescriptorType = AKAZEDescriptorType.Mldb,
Optional descriptorSize As Integer = 0,
Optional descriptorChannels As Integer = 3,
Optional threshold As Single = 0.001F,
Optional octaves As Integer = 4,
Optional sublevels As Integer = 4,
Optional diffusivity As KAZEDiffusivity = KAZEDiffusivity.PmG2
)
public:
AKAZE(
AKAZEDescriptorType descriptorType = AKAZEDescriptorType::Mldb,
int descriptorSize = 0,
int descriptorChannels = 3,
float threshold = 0.001f,
int octaves = 4,
int sublevels = 4,
KAZEDiffusivity diffusivity = KAZEDiffusivity::PmG2
)
new :
?descriptorType : AKAZEDescriptorType *
?descriptorSize : int *
?descriptorChannels : int *
?threshold : float32 *
?octaves : int *
?sublevels : int *
?diffusivity : KAZEDiffusivity
(* Defaults:
let _descriptorType = defaultArg descriptorType AKAZEDescriptorType.Mldb
let _descriptorSize = defaultArg descriptorSize 0
let _descriptorChannels = defaultArg descriptorChannels 3
let _threshold = defaultArg threshold 0.001f
let _octaves = defaultArg octaves 4
let _sublevels = defaultArg sublevels 4
let _diffusivity = defaultArg diffusivity KAZEDiffusivity.PmG2
*)
-> AKAZE
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 - octaves (Optional)
- Type: SystemInt32
Maximum octave evolution of the image - sublevels (Optional)
- Type: SystemInt32
Default number of sublevels per scale level - diffusivity (Optional)
- Type: Emgu.CV.Features2DKAZEDiffusivity
Diffusivity type
See Also