Click or drag to resize

KAZE Constructor

http://www.emgu.com
Create KAZE using the specific values

Namespace:  Emgu.CV.Features2D
Assembly:  Emgu.CV.Platform.NetStandard (in Emgu.CV.Platform.NetStandard.dll) Version: 4.3.0.3890
Syntax
public KAZE(
	bool extended = false,
	bool upright = false,
	float threshold = 0.001f,
	int octaves = 4,
	int sublevels = 4,
	KAZEDiffusivity diffusivity = KAZEDiffusivity.PmG2
)

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
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