Skip to content

morou34/FAST-Corner-Detection-Algorithm

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 

Repository files navigation

FAST: Features From Accelerated Segment Test

  • This is a simple implementation of the FAST corner detection algorithm using python, this method does not use OpenCV functions.

  • In general this is good for students or anyone who is trying to write his own code instead of just using already builtins functions that comes with openCV or any other python libraries.

  • FAST corner detector uses a circle of 16 pixels (a 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 Ip) 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.

Results:

Before

After :

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages