Azzera filtri
Azzera filtri

Counting black pixels in a binary image

13 visualizzazioni (ultimi 30 giorni)
How can I write a code to count the black pixels and the white pixels in a binary image?

Risposta accettata

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

Più risposte (0)

Categorie

Scopri di più su Convert Image Type in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by