Click or drag to resize

Cv2FAST Method (InputArray, Int32, Boolean, FASTType)

Detects corners using the FAST algorithm

Namespace:  OpenCvSharp
Assembly:  OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0
Syntax
public static KeyPoint[] FAST(
	InputArray image,
	int threshold,
	bool nonmaxSupression,
	FASTType 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.
nonmaxSupression
Type: SystemBoolean
if true, non-maximum suppression is applied to detected corners (keypoints).
type
Type: OpenCvSharpFASTType
one of the three neighborhoods as defined in the paper

Return Value

Type: KeyPoint
keypoints detected on the image.
See Also