Detecting and measuring circles
Mostra commenti meno recenti
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
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.
Risposte (1)
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
il 25 Apr 2016
Image Analyst
il 25 Apr 2016
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.)
Categorie
Scopri di più su Image Arithmetic in Centro assistenza e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!