clustering and pixel count
1 回表示 (過去 30 日間)
古いコメントを表示
I want to differentially recognize circular spots within a binary image.
I also want to count how many pixels are inside each individually recognized spot.
Is there a way?
0 件のコメント
採用された回答
Image Analyst
2021 年 5 月 30 日
I do exactly this in my Image Segmentation Tutorial with the standard coins demo image:
Please study it. Basically
props = regionprops(mask, 'Area');
allAreas = [props.Area] % Areas of all blobs in pixels.
but there's more to it so look over my well commented tutorial.
6 件のコメント
Image Analyst
2021 年 5 月 31 日
What problems? Were they supposed to be recognized? What steps did you take to recognize/detect those problems?
その他の回答 (1 件)
参考
カテゴリ
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!