The AKAZE constructor
Namespace:
OpenCvSharp
Assembly:
OpenCvSharp (in OpenCvSharp.dll) Version: 3.4.1.20180605-33-CaRLSharp
Syntaxpublic static AKAZE Create(
AKAZEDescriptorType descriptorType = AKAZEDescriptorType.MLDB,
int descriptorSize = 0,
int descriptorChannels = 3,
float threshold = 0.001f,
int nOctaves = 4,
int nOctaveLayers = 4,
KAZEDiffusivity diffusivity = KAZEDiffusivity.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 KAZEDiffusivity = KAZEDiffusivity.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,
KAZEDiffusivity diffusivity = KAZEDiffusivity::DiffPmG2
)
static member Create :
?descriptorType : AKAZEDescriptorType *
?descriptorSize : int *
?descriptorChannels : int *
?threshold : float32 *
?nOctaves : int *
?nOctaveLayers : 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 _nOctaves = defaultArg nOctaves 4
let _nOctaveLayers = defaultArg nOctaveLayers 4
let _diffusivity = defaultArg diffusivity KAZEDiffusivity.DiffPmG2
*)
-> AKAZE
OpenCvSharp.AKAZE.Create = function(descriptorType, descriptorSize, descriptorChannels, threshold, nOctaves, nOctaveLayers, diffusivity);
Parameters
- descriptorType (Optional)
- Type: OpenCvSharpAKAZEDescriptorType
- descriptorSize (Optional)
- Type: SystemInt32
- descriptorChannels (Optional)
- Type: SystemInt32
- threshold (Optional)
- Type: SystemSingle
- nOctaves (Optional)
- Type: SystemInt32
- nOctaveLayers (Optional)
- Type: SystemInt32
- diffusivity (Optional)
- Type: OpenCvSharpKAZEDiffusivity
Return Value
Type:
AKAZE
See Also