Detecting and measuring circles

I want to find circles and measure diameter of them. I have a image where the circles have a value of 1 and the background has a value of 0. I would like to do this without any built in functions.

1 Commento

John BG
John BG il 26 Apr 2016
show the image, or part of it, so we can write an answer according to the kind of circles you mention in your question.

Accedi per commentare.

Risposte (1)

Image Analyst
Image Analyst il 25 Apr 2016

0 voti

Well you'll have to write your own version of either imfindcircles() or bwlabel(), and regionprops(). You might need to threshold your image to binarize it. Then, you can find connected components algorithms on the web to do the labeling of your binary image. To get the diameter, sum of the number of pixels in each blob and use the formula for area. Diameter = sqrt(area*4/pi).

2 Commenti

P
P il 25 Apr 2016
How would I go about sectioning off each blob from each other?
I don't even know what that means. Do you mean split apart, like a watershed transform? Or do you mean connected components labeling? (Google those terms.)

Accedi per commentare.

Richiesto:

P
P
il 25 Apr 2016

Commentato:

il 26 Apr 2016

Community Treasure Hunt

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

Start Hunting!

Translated by