The KAZE constructor
            
 
    Namespace: 
   OpenCvSharp
    Assembly:
   OpenCvSharp (in OpenCvSharp.dll) Version: 3.4.1.20180605-33-CaRLSharp
 Syntax
Syntaxpublic static KAZE Create(
	bool extended = false,
	bool upright = false,
	float threshold = 0.001f,
	int nOctaves = 4,
	int nOctaveLayers = 4,
	KAZEDiffusivity diffusivity = KAZEDiffusivity.DiffPmG2
)
Public Shared Function Create ( 
	Optional extended As Boolean = false,
	Optional upright As Boolean = false,
	Optional threshold As Single = 0.001F,
	Optional nOctaves As Integer = 4,
	Optional nOctaveLayers As Integer = 4,
	Optional diffusivity As KAZEDiffusivity = KAZEDiffusivity.DiffPmG2
) As KAZE
public:
static KAZE^ Create(
	bool extended = false, 
	bool upright = false, 
	float threshold = 0.001f, 
	int nOctaves = 4, 
	int nOctaveLayers = 4, 
	KAZEDiffusivity diffusivity = KAZEDiffusivity::DiffPmG2
)
static member Create : 
        ?extended : bool * 
        ?upright : bool * 
        ?threshold : float32 * 
        ?nOctaves : int * 
        ?nOctaveLayers : int * 
        ?diffusivity : KAZEDiffusivity 
(* Defaults:
        let _extended = defaultArg extended false
        let _upright = defaultArg upright false
        let _threshold = defaultArg threshold 0.001f
        let _nOctaves = defaultArg nOctaves 4
        let _nOctaveLayers = defaultArg nOctaveLayers 4
        let _diffusivity = defaultArg diffusivity KAZEDiffusivity.DiffPmG2
*)
-> KAZE 
OpenCvSharp.KAZE.Create = function(extended, upright, threshold, nOctaves, nOctaveLayers, diffusivity);
Parameters
- extended (Optional)
- Type: SystemBoolean
 Set to enable extraction of extended (128-byte) descriptor.
- upright (Optional)
- Type: SystemBoolean
 Set to enable use of upright descriptors (non rotation-invariant).
- 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: OpenCvSharpKAZEDiffusivity
 Diffusivity type. DIFF_PM_G1, DIFF_PM_G2, DIFF_WEICKERT or DIFF_CHARBONNIER
Return Value
Type: 
KAZE See Also
See Also