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!