Info
この質問は閉じられています。 編集または回答するには再度開いてください。
To find the lower array of black pixels of a word in an image
1 回表示 (過去 30 日間)
古いコメントを表示
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
0 件のコメント
回答 (1 件)
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
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')
この質問は閉じられています。
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!