フィルターのクリア

calculate the area

4 ビュー (過去 30 日間)
Adam
Adam 2012 年 3 月 23 日
hello everyone I need help. I have a picture consisting only of black and white. Does anybody know of any function which I figured would be an area of white on obazku.
Thank you so much to everyone

採用された回答

Adam
Adam 2012 年 3 月 25 日
solution to my problem was easier than it seemed ...
A=[0 1 0 0 0 0 1; 1 0 1 0 1 1 0; 0 0 1 1 1 0 1]
figure, imshow(A)
B = sum(sum(A))
  2 件のコメント
Image Analyst
Image Analyst 2012 年 3 月 25 日
What is obazku? Is that zero or black? What if there are several disconnected areas of white? Your method would give the total area but not the area of each one individually. If you want the total white area in a binary black and white grayscale image then your method is fine.
Adam
Adam 2012 年 3 月 28 日
sorry "obrazku" I forgot to translate the picture = obrazku.

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

その他の回答 (1 件)

Matt Kindig
Matt Kindig 2012 年 3 月 23 日
Do you want just the total number of pixels of white? If so, just sum the image (sum all 1's).
If you want the area of contiguous objects of white, check out the 'regionprops' function in the Image Processing Toolbox.
  1 件のコメント
Adam
Adam 2012 年 3 月 24 日
was enough I would sum all the white pixels in the picture. But I do not know how to get in this quest

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

製品

Community Treasure Hunt

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

Start Hunting!

Translated by