how to measure the wide of object in binary image ?
1 回表示 (過去 30 日間)
古いコメントを表示
i have a binary image, and i want to measure the wide of object ( white pixel). how to measure it ? please help. thanks
0 件のコメント
採用された回答
Image Analyst
2016 年 3 月 2 日
See my Image Segmentation Tutorial and see how I get the bounding box. http://www.mathworks.com/matlabcentral/fileexchange/?term=authorid%3A31862
11 件のコメント
Image Analyst
2016 年 3 月 4 日
It gives you a structure array. Each structure in the array is a structure with field that correspond to the measurements you asked regionprops() to make. For example measurements(7) has all the measurements for blob #7, like Area, Centroid and BoundingBox: measurements(7).Area, measurements(7).Centroid, and measurements(7).BoundingBox.
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Image Segmentation and Analysis についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!