I am experimenting with different types of OpenCV's FAST detector.
Available types are:
TYPE_5_8,
TYPE_7_12,
TYPE_9_16
The last one is the default and is described by this photo:
I assume TYPE_7_12
means the following:
And the TYPE_5_8
means this:
Now, I run the FAST detector with threshold 30 and TYPE_5_8
and the following image section does not produce a single keypoint:
Based on documentation saying:
Now the pixel p is a corner if there exists a set of n contiguous pixels in the circle (of 16 pixels) which are all brighter than I_p + t, or all darker than I_p − t
, I expected that the central pixel (the one with the value 203) will be detected as a keypoint. There are clearly 5 contiguous pixels with intensities lower than 203 - 30.
Yet nothing is detected. Why?