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!