Click or drag to resize

Cv2AGAST Method

Detects corners using the AGAST algorithm

Namespace:  OpenCvSharp
Assembly:  OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0
Syntax
public static KeyPoint[] AGAST(
	InputArray image,
	int threshold,
	bool nonmaxSuppression,
	AgastFeatureDetectorDetectorType type
)

Parameters

image
Type: OpenCvSharpInputArray
grayscale image where keypoints (corners) are detected.
threshold
Type: SystemInt32
threshold on difference between intensity of the central pixel and pixels of a circle around this pixel.
nonmaxSuppression
Type: SystemBoolean
if true, non-maximum suppression is applied to detected corners (keypoints).
type
Type: OpenCvSharpAgastFeatureDetectorDetectorType
one of the four neighborhoods as defined in the paper

Return Value

Type: KeyPoint
keypoints detected on the image.
See Also