|
Algorithm 3: FALKO-Based Corner Detection. |
CORNER DETECTION
falko_ // FALKO score threshold
for each datapoint using its neighbors in scan S do
if
then
potential_candidate ←
end if
end for
for each potential candidate with its neighbors in scan S do
compute_corner_score
if
then
end if
returnI // returns I set of interest points
end for
|