Skip to main content
. 2022 Nov 25;22(23):9168. doi: 10.3390/s22239168
Algorithm 3: FALKO-Based Corner Detection.
  • CORNER DETECTION

  • falko_Ip(scoreth) // scoreth FALKO score threshold

  • for each datapoint di using its neighbors in scan S do

  •     if cardinality2 then

  •         potential_candidate ← dq

  •     end if

  • end for

  • for each potential candidate dc with its neighbors in scan S do

  •     compute_corner_score()

  •     if corner_scorescoreth then

  •         Ipdq

  •     end if

  •     INon_Maxima_Suppression(Ip)

  •     returnI // returns I set of interest points

  • end for