how to read column wise pixels using FOR LOOP

1 回表示 (過去 30 日間)
DB
DB 2017 年 3 月 6 日
編集済み: Adam 2017 年 3 月 7 日
when I'm using this code I got below results....... figure,plot(sum(bw,2),1:size(bw,1));
so I need how to read column wise pixels using FOR LOOP? can any one tell me how to read pixels column wise ....?
Thanks in Advance
  6 件のコメント
Adam
Adam 2017 年 3 月 6 日
It still doesn't make sense what you want. Focus on the result you want. The fact you think you should use a for loop is irrelevant to what you are actually trying to get as an end result.
DB
DB 2017 年 3 月 6 日
This is my input image
I want output like this

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

採用された回答

Adam
Adam 2017 年 3 月 7 日
編集済み: Adam 2017 年 3 月 7 日
Judging from your last comment what you want is a plot of the number of black pixels in each column of the image:
figure; area( sum( ~bw ) )
should give you this.

その他の回答 (0 件)

Community Treasure Hunt

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

Start Hunting!

Translated by