MATLAB: Counting black pixels in a binary image

image processingImage Processing Toolboximage segmentation

How can I write a code to count the black pixels and the white pixels in a binary image?

Best Answer

Let's say you have a binary image B. You can get the number of black pixels by:
numBlack=nnz(~B);
and the number of white pixels by:
numWhite=nnz(B);
Related Question