segment the characters in the image
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Elysi Cochin
el 22 de Feb. de 2018
Editada: Elysi Cochin
el 28 de Feb. de 2018
How to segment the image into line, word, and character.
0 comentarios
Respuesta aceptada
KSSV
el 22 de Feb. de 2018
I = imread('BW1.bmp') ;
I = ~I ;
s = sum(I,2) ;
idx = find(s) ;
idx gives you the rows which have the characters.
0 comentarios
Más respuestas (1)
michael scheinfeild
el 22 de Feb. de 2018
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 comentarios
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!