segment the characters in the image
3 ビュー (過去 30 日間)
古いコメントを表示
How to segment the image into line, word, and character.
0 件のコメント
採用された回答
KSSV
2018 年 2 月 22 日
I = imread('BW1.bmp') ;
I = ~I ;
s = sum(I,2) ;
idx = find(s) ;
idx gives you the rows which have the characters.
0 件のコメント
その他の回答 (1 件)
michael scheinfeild
2018 年 2 月 22 日
try use properties and take bounding boxes the seperete by witdh , maybe you need also erosion/dilation to separate https://www.mathworks.com/help/images/ref/regionprops.html
0 件のコメント
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!