Method AGAST
- Namespace
- OpenCvSharp
- Assembly
- OpenCvSharp.dll
AGAST(InputArray, int, bool, DetectorType)
Detects corners using the AGAST algorithm
public static KeyPoint[] AGAST(InputArray image, int threshold, bool nonmaxSuppression, AgastFeatureDetector.DetectorType 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.
nonmaxSuppressionboolif true, non-maximum suppression is applied to detected corners (keypoints).
typeAgastFeatureDetector.DetectorTypeone of the four neighborhoods as defined in the paper
Returns
- KeyPoint[]
keypoints detected on the image.