Skip to content

francescotorregrossa/fast-radial-symmetry

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Developed with Giuseppe Marino

Fast radial symmetry

The fast radial symmetry algorithm highligths the central points of circles in an image.

Each pixel is interpreted as if it was part of a circumference. The angle of the pixel's gradient is used to calculate where, for a given radius, the theoretical center of the circle would fall. This point is registered in a separate matrix. The same happens for the angle in the opposite direction (rotated by pi radians), but it's marked in a different way. Then, a series of normalizations and filters are used to combine the results obtained with different radii.

Usage

The implementation works on grayscale images. The second parameter is the list of radii to use. The output is a single image, where a dark spot indicate a circle that's surrounded by a darker area, and where a bright spot indicates a circle that's surrounded by a brighter area.

frs = fastradialsymmetry(img, [10:4:26 40:10:90]);
figure; imshow(frs, []);

Original

Fast radial symmetry

About

Simple implementation of the paper in Matlab

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages