Detecting circle in an image

Hi, I would like to know is it possible to detect the circles in the image below using MATLAB's Image Processing Toolbox. The circles are imperfect and the radius are varied. Anyone can help me with this? Thanks in advance.

 Réponse acceptée

Image Analyst
Image Analyst le 8 Mar 2012

0 votes

I'd probably just sum the image horizontally and vertically to detect the grid locations and then process the inside of each grid location (each "tile") to see if the mean gray level is less than some number. That's what I think would be the simplest approach.

2 commentaires

Natsu
Natsu le 8 Mar 2012
Sorry for the trouble, but can you show me how to begin doing this with MATLAB? How can I calculate the pixel value of each tile separately?
Image Analyst
Image Analyst le 8 Mar 2012
meanGrayValue = imageArray(row1:row2, col1:col2);
if meanGrayValue < 150
% It has user-written stuff in it
else
% It's just the number alone.
end

Connectez-vous pour commenter.

Plus de réponses (1)

Sean de Wolski
Sean de Wolski le 8 Mar 2012

0 votes

One of R2012a's not-so-hidden gems!

1 commentaire

Image Analyst
Image Analyst le 11 Mar 2012
Brett uploaded an app based on that: http://www.mathworks.com/matlabcentral/fileexchange/34365-findcirclesgui

Connectez-vous pour commenter.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by