How can I count the pixels in a black and white image?

2 次查看(过去 30 天)
How can I count the pixels in a black and white image?

回答(1 个)

Image Analyst
Image Analyst 2020-7-8
Try this:
numberOfPixels = numel(binaryImage)
numberOfWhitePixels = nnz(binaryImage)
numberOfBlackPixels = numberOfPixels - numberOfWhitePixels

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by