calculate the percentage of B&W image
4 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
I have a black and white image, how do I calculate the percentage of the white area over the black area?

0 Kommentare
Antworten (2)
Nithin Banka
am 29 Jun. 2018
If 'BW' is your binary threshold image,
pix = size(BW);
no_of_pix = pix(1)*pix(2);
no_of_white_pix = sum(sum(BW==1));
percent_of_white_pix = no_of_white_pix*100/no_of_pix; %This gives the percentage of white in the image.
0 Kommentare
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!