Clear Filters
Clear Filters

How to creat automatic cropping for braille text (image)

1 view (last 30 days)
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 ?

Accepted Answer

Image Analyst
Image Analyst on 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 Comments
Image Analyst
Image Analyst on 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);

Sign in to comment.

More Answers (1)

KSSV
KSSV on 24 Jan 2017

Categories

Find more on Image Processing Toolbox in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!