Filter löschen
Filter löschen

How to creat automatic cropping for braille text (image)

1 Ansicht (letzte 30 Tage)
afif fadilah
afif fadilah am 24 Jan. 2017
Kommentiert: afif fadilah am 31 Jan. 2017
i have a image of braille scan, i want to creat automatic cropping for this image, what's tools in matlab that i can use ?

Akzeptierte Antwort

Image Analyst
Image Analyst am 24 Jan. 2017
I'd first try imtophat() or imbothat() to emphasize the spots. Then it really depends on what area(s) of the image you want to crop, like each letter, each paragraph, the whole group of paragraphs or what???.
  5 Kommentare
Image Analyst
Image Analyst am 30 Jan. 2017
I'd take projections vertically and horizontally to try to find natural breaks in blob locations.
verticalProfile = sum(binaryImage, 2);
horizontalProfile = sum(binaryImage, 1);
afif fadilah
afif fadilah am 31 Jan. 2017
ok, thank u sir, i'll try....

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (1)

KSSV
KSSV am 24 Jan. 2017

Kategorien

Mehr zu Image Processing Toolbox finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by