Info

この質問は閉じられています。 編集または回答するには再度開いてください。

To find the lower array of black pixels of a word in an image

1 回表示 (過去 30 日間)
sindhu c
sindhu c 2015 年 12 月 14 日
閉鎖済み: MATLAB Answer Bot 2021 年 8 月 20 日
I want the lower array of black pixels of this word.I know to count the black pixels but how to get the lower array? Please help me. Thank you

回答 (1 件)

Walter Roberson
Walter Roberson 2015 年 12 月 14 日
hprof = ~all(YourImage,2);
first_row_with_black = find(hprof, 1, 'first');
last_row_with_black = find(hprof, 1, 'last');
  3 件のコメント
Walter Roberson
Walter Roberson 2015 年 12 月 14 日
Change to
hprof = ~all(YourImage,2);
first_row_with_black = find(hprof, 1, 'first')
last_row_with_black = find(hprof, 1, 'last')
sindhu c
sindhu c 2015 年 12 月 15 日
sir,this is what i'm getting .empty array!!

この質問は閉じられています。

Community Treasure Hunt

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

Start Hunting!

Translated by