How to calculate the area of only white part in the image
7 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
kanika bhalla
el 22 de Abr. de 2021
Comentada: kanika bhalla
el 23 de Abr. de 2021
I want to calculate the area of only white part as shown in the figure. I had used - bwarea(image). But I am not sure whether its calculating correct area or not. As I just need the white portion area.
Any help is much appreciated.
Thank you in advance!!![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/592690/image.jpeg)
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/592690/image.jpeg)
2 comentarios
Jonas
el 22 de Abr. de 2021
you could count the white pixels, divide it by overall number of pixels and multiply it with the real size of the image
Respuesta aceptada
Image Analyst
el 23 de Abr. de 2021
You simply use nnz on your binary image to get the area in pixels
whiteArea = nnz(mask)
or you could use bwarea() - it uses a somewhat different algorithm for determining area (it's not just counting pixels).
whiteArea = bwarea(mask)
Ver también
Categorías
Más información sobre Image Segmentation and Analysis en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!