How to get the edge of a pile of white dots?
2 ビュー (過去 30 日間)
古いコメントを表示
I v transferred a picture into b&w and it now looks like a pile of white dots with black background.
How can i get the specific area of there dots, and show the whole area in white color from this picture?
0 件のコメント
採用された回答
Walter Roberson
2012 年 6 月 22 日
regionprops( double(BW), 'Area')
The purpose of the double() there is to prevent BW from being a logical matrix, because if BW is a logical matrix then regionprops() will automatically do an object labeling, whereas you just want the total (I guess?) Or if you want clusters to be analyzed then
regionprops( logical(BW), 'Area')
and that will return a structure array that you can later total the areas of.
0 件のコメント
その他の回答 (1 件)
Image Analyst
2012 年 6 月 22 日
See my BlobsDemo image segmentation tutorial. It does that. http://www.mathworks.com/matlabcentral/fileexchange/?term=authorid%3A31862
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!