clustering and pixel count
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
HJ
am 29 Mai 2021
Kommentiert: Image Analyst
am 31 Mai 2021
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 Kommentare
Akzeptierte Antwort
Image Analyst
am 30 Mai 2021
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 Kommentare
Image Analyst
am 31 Mai 2021
What problems? Were they supposed to be recognized? What steps did you take to recognize/detect those problems?
Weitere Antworten (1)
Siehe auch
Kategorien
Mehr zu Image Segmentation and Analysis finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!