Effacer les filtres
Effacer les filtres

segment the characters in the image

1 vue (au cours des 30 derniers jours)
Elysi Cochin
Elysi Cochin le 22 Fév 2018
Modifié(e) : Elysi Cochin le 28 Fév 2018
How to segment the image into line, word, and character.

Réponse acceptée

KSSV
KSSV le 22 Fév 2018
I = imread('BW1.bmp') ;
I = ~I ;
s = sum(I,2) ;
idx = find(s) ;
idx gives you the rows which have the characters.

Plus de réponses (1)

michael scheinfeild
michael scheinfeild le 22 Fév 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

Community Treasure Hunt

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

Start Hunting!

Translated by