Get centers and radii of circles in a figure
1 回表示 (過去 30 日間)
古いコメントを表示
How would I calculate the centers and radii of the circles of a figure in matlab and put them into a table?
0 件のコメント
回答 (1 件)
Image Analyst
2018 年 10 月 19 日
This sounds very very much like your assignment. Is it? If so, read this: http://www.mathworks.com/matlabcentral/answers/8626-how-do-i-get-help-on-homework-questions-on-matlab-answers and tag this post as homework.
In the meantime, here is a hint:
props = regionprops(binaryImage, 'Centroid', 'EquivDiameter');
allRadii = [props.EquivDiameter]/2;
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Data Exploration についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!