| 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
)
Public Shared Function Create (
Optional descriptorType As AKAZEDescriptorType = AKAZEDescriptorType.MLDB,
Optional descriptorSize As Integer = 0,
Optional descriptorChannels As Integer = 3,
Optional threshold As Single = 0.001F,
Optional nOctaves As Integer = 4,
Optional nOctaveLayers As Integer = 4,
Optional diffusivity As KAZEDiffusivityType = KAZEDiffusivityType.DiffPmG2
) As AKAZE
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
)
static member Create :
?descriptorType : AKAZEDescriptorType *
?descriptorSize : int *
?descriptorChannels : int *
?threshold : float32 *
?nOctaves : int *
?nOctaveLayers : int *
?diffusivity : KAZEDiffusivityType
(* Defaults:
let _descriptorType = defaultArg descriptorType AKAZEDescriptorType.MLDB
let _descriptorSize = defaultArg descriptorSize 0
let _descriptorChannels = defaultArg descriptorChannels 3
let _threshold = defaultArg threshold 0.001f
let _nOctaves = defaultArg nOctaves 4
let _nOctaveLayers = defaultArg nOctaveLayers 4
let _diffusivity = defaultArg diffusivity KAZEDiffusivityType.DiffPmG2
*)
-> AKAZE
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