Hi all
if i have binary image, how to calculate the white pixel, and black pixel?

5 commentaires

darova
darova le 30 Juil 2019
5Capture.PNG
Adam Danz
Adam Danz le 30 Juil 2019
Ha! Funny response, darova.
mohd akmal masud
mohd akmal masud le 31 Juil 2019
sorry, im newbie in matlab.
i want to calculate the white pixel in some location. i have row and colom
Adam Danz
Adam Danz le 31 Juil 2019
Do you mean you want to calculate the location of a single white pixel? Or you want to determine if a given coordinate is a white pixel? Maybe a picture will help.
mohd akmal masud
mohd akmal masud le 31 Juil 2019
Untitled.jpg
Hi Adam, i want to calculate no of white pixel in red circle. let say the area row is 100-130, column 110-140. Please help me

Connectez-vous pour commenter.

 Réponse acceptée

KALYAN ACHARJYA
KALYAN ACHARJYA le 31 Juil 2019
Modifié(e) : KALYAN ACHARJYA le 31 Juil 2019

1 vote

Let's say input binary image is image_bw
result=bwareafilt(image_bw,1,'Largest');
count_w=sum(result);
fprintf('The white pixel count is: %d',count_w);

Plus de réponses (0)

Catégories

En savoir plus sur Images dans Centre d'aide et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by