Content deleted Content added
Reverted 2 edits by 2001:630:3C1:90:712B:1597:11A9:5659 (talk) (TW) |
Happymacaron (talk | contribs) →Segment test detector: Add image; Format math expressions. |
||
Line 10:
== Segment test detector ==
[[File:FAST Corner Detector.jpg|thumb|The pixels used by the FAST corner detector]]
FAST corner detector uses a circle of 16 pixels (a [[Midpoint circle algorithm|Bresenham circle]] of radius 3) to classify whether a candidate point p is actually a corner. Each pixel in the circle is labeled from integer number 1 to 16 clockwise. If a set of N contiguous pixels in the circle are all brighter than the intensity of candidate pixel p (denoted by I<sub>p</sub>) plus a threshold value t or all darker than the intensity of candidate pixel p minus threshold value t, then p is classified as corner. The conditions can be written as:
*Condition 1: A set of N contiguous pixels S,
*Condition 2: A set of N contiguous pixels S,
So when either of the two conditions is met, candidate p can be classified as a corner.
== High-speed test ==
|