Counting black pixels in a binary image

13 次查看(过去 30 天)
How can I write a code to count the black pixels and the white pixels in a binary image?

采纳的回答

Turlough Hughes
Turlough Hughes 2019-12-15
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);

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Convert Image Type 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by