Borrar filtros
Borrar filtros

How to creat automatic cropping for braille text (image)

1 visualización (últimos 30 días)
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 ?

Respuesta aceptada

Image Analyst
Image Analyst el 24 de En. de 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 comentarios
Image Analyst
Image Analyst el 30 de En. de 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 el 31 de En. de 2017
ok, thank u sir, i'll try....

Iniciar sesión para comentar.

Más respuestas (1)

KSSV
KSSV el 24 de En. de 2017

Categorías

Más información sobre Image Processing Toolbox en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by