How to count the number of white pixels

51 ビュー (過去 30 日間)
윤주 황
윤주 황 2022 年 5 月 13 日
コメント済み: Chunru 2022 年 5 月 13 日
filename = 'untitled.jpg';
I = imread(filename);
figure, imshow(I);
sum(I(:) == 255)
ans = 592185
and
filename = 'untitled2.jpg';
I = imread(filename);
figure, imshow(I);
sum(I(:) == 255)
ans = 626229
....
This is strange that figure1 has much lower white pixels, because i'm agricultural student, so i do not know well about matlab, coding,,,
What is wrong about my script??

採用された回答

Chunru
Chunru 2022 年 5 月 13 日
First, you should use gray scale image.
Second you have a large white margin in your data (which is not seen from imshow). You can see the margin if you use imagesc instead.
If you need to count the white pixels inside. You can clip the image to remove the white margin first.
filename = 'https://www.mathworks.com/matlabcentral/answers/uploaded_files/996375/image.jpeg';
I = imread(filename);
I = rgb2gray(I);
figure, imagesc(I); colorbar; %imshow(I);
sum(I(:) >= 250)
ans = 199547
sum(I(200:600, 200:600)>250, 'all')
ans = 583
figure; histogram(I(:))
%whos
filename = 'https://www.mathworks.com/matlabcentral/answers/uploaded_files/996380/image.jpeg';
I = imread(filename);
I = rgb2gray(I);
figure, imagesc(I); colorbar; %imshow(I);
figure; histogram(I(:))
sum(I(:) >= 250)
ans = 211979
sum(I(200:600, 200:600)>250, 'all')
ans = 12900
  2 件のコメント
윤주 황
윤주 황 2022 年 5 月 13 日
Thank you for your answer, and i will try this script.
I'v got one more question.
I have to calculate <stained(fig1) pixels /flesh pixels(fig2)>.
According to your answers, <stained(fig1) pixels /flesh pixels(fig2) = 583/12900 >,, is that right??
Chunru
Chunru 2022 年 5 月 13 日
You are right.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeInteractive Control and Callbacks についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by