Cv2FAST Method (InputArray, Int32, Boolean)
|
Detects corners using the FAST algorithm
Namespace:
OpenCvSharp
Assembly:
OpenCvSharp (in OpenCvSharp.dll) Version: 3.4.1.20180605-33-CaRLSharp
Syntaxpublic static KeyPoint[] FAST(
InputArray image,
int threshold,
bool nonmaxSupression = true
)
Public Shared Function FAST (
image As InputArray,
threshold As Integer,
Optional nonmaxSupression As Boolean = true
) As KeyPoint()
public:
static array<KeyPoint>^ FAST(
InputArray^ image,
int threshold,
bool nonmaxSupression = true
)
static member FAST :
image : InputArray *
threshold : int *
?nonmaxSupression : bool
(* Defaults:
let _nonmaxSupression = defaultArg nonmaxSupression true
*)
-> KeyPoint[]
OpenCvSharp.Cv2.FAST = function(image, threshold, nonmaxSupression);
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 (Optional)
- Type: SystemBoolean
if true, non-maximum suppression is applied to
detected corners (keypoints).
Return Value
Type:
KeyPointkeypoints detected on the image.
See Also