Azzera filtri
Azzera filtri

How to creat automatic cropping for braille text (image)

1 visualizzazione (ultimi 30 giorni)
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 ?

Risposta accettata

Image Analyst
Image Analyst il 24 Gen 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 Commenti
Image Analyst
Image Analyst il 30 Gen 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);

Accedi per commentare.

Più risposte (1)

KSSV
KSSV il 24 Gen 2017

Categorie

Scopri di più su Image Processing Toolbox in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by