필터 지우기
필터 지우기

How to creat automatic cropping for braille text (image)

조회 수: 1 (최근 30일)
afif fadilah
afif fadilah 2017년 1월 24일
댓글: afif fadilah 2017년 1월 31일
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 ?

채택된 답변

Image Analyst
Image Analyst 2017년 1월 24일
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
Image Analyst
Image Analyst 2017년 1월 30일
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 2017년 1월 31일
ok, thank u sir, i'll try....

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

KSSV
KSSV 2017년 1월 24일

카테고리

Help CenterFile Exchange에서 Image Processing Toolbox에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by