Method FAST
- Namespace
- OpenCvSharp
- Assembly
- OpenCvSharp.dll
FAST(InputArray, int, bool)
Detects corners using the FAST algorithm
public static KeyPoint[] FAST(InputArray image, int threshold, bool nonmaxSupression = true)
Parameters
imageInputArraygrayscale image where keypoints (corners) are detected.
thresholdintthreshold on difference between intensity of the central pixel and pixels of a circle around this pixel.
nonmaxSupressionboolif true, non-maximum suppression is applied to detected corners (keypoints).
Returns
- KeyPoint[]
keypoints detected on the image.
FAST(InputArray, int, bool, FASTType)
Detects corners using the FAST algorithm
public static KeyPoint[] FAST(InputArray image, int threshold, bool nonmaxSupression, FASTType type)
Parameters
imageInputArraygrayscale image where keypoints (corners) are detected.
thresholdintthreshold on difference between intensity of the central pixel and pixels of a circle around this pixel.
nonmaxSupressionboolif true, non-maximum suppression is applied to detected corners (keypoints).
typeFASTTypeone of the three neighborhoods as defined in the paper
Returns
- KeyPoint[]
keypoints detected on the image.