Content deleted Content added
removed Category:Artificial intelligence - the article is in Category:Feature detection, which is a subcategory of Category:Computer vision, which is a subcategory of Category:Artificial intelligence |
ce |
||
Line 1:
{{abbreviations|date=April 2012}}
'''Features from Accelerated Segment Test (FAST)''' is a corner detection method, which could be used to extract feature points and later used to track and map objects in many [[computer vision]] tasks. FAST corner detector was originally developed by Edward Rosten and Tom Drummond. The most promising advantage of FAST [[corner detector]] is its computational efficiency. Referring to its name, it is fast and indeed it is faster than many other well-known feature extraction methods, such as [[
== Segment test detector ==
Line 7:
*Condition 1: A set of N contiguous pixels S, ∀ x ∈ S, the intensity of x (I<sub>x</sub>) > I<sub>p</sub> + threshold t
*Condition 2: A set of N contiguous pixels S, ∀ x ∈ S, I<sub>x</sub> < I<sub>p</sub> - t
So when either of the two conditions is met, candidate p can be classified as a corner. There is a tradeoff of choosing N, the number of contiguous pixels and the threshold value t. On the one hand, the number of detected corner points should not be too many; on the other hand, the high performance should not be achieved by sacrificing computational efficiency. Without the improvement of [[machine learning]], N is usually chosen as 12.
== High
The high
However, there are several weaknesses for this test method:
|