Greetings. I want to ask on how to calculate radius of circle in matlab

3 Ansichten (letzte 30 Tage)
This is the example of image

Akzeptierte Antwort

Benjamin Kraus
Benjamin Kraus am 4 Mär. 2018
Maybe one of these links will give you some ideas about how to get started:

Weitere Antworten (1)

Image Analyst
Image Analyst am 4 Mär. 2018
First segment the binary image to get the blobs you want the diameter of. Then simply call regionprops to get the equivalent circular diameters.
props = regionprops (binaryImage, 'EquivDiameter');
allDiameters = [props.EquivDiameter]

Community Treasure Hunt

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

Start Hunting!

Translated by