cv.FASTForPointSet - MATLAB File Help |
Estimates cornerness for pre-specified KeyPoints using the FAST algorithm
keypoints = cv.FASTForPointSet(im, keypoints)
keypoints = cv.FASTForPointSet(im, keypoints, 'OptionName', optionValue, ...)
Detects corners using the FAST algorithm by [Rosten06].
Rational: Some applications only want to know if there are feature at specific locations. To fit these needs the cv.FAST approach is extended in cv.FASTForPointSet to recieve a vector of locations and calculates the FAST response on these positions. If it is below the threshold, it will be removed from the list.
[Rosten06]:
E. Rosten (Machine Learning for High-speed Corner Detection, 2006).