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!