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 个评论

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

请先登录,再进行评论。

回答(1 个)

Image Analyst
Image Analyst 2016-4-25

0 个投票

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 个评论

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.)

请先登录,再进行评论。

提问:

P
P
2016-4-25

评论:

2016-4-26

Community Treasure Hunt

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

Start Hunting!

Translated by