필터 지우기
필터 지우기

How to detect letters or numbers in MATLAB?

조회 수: 12 (최근 30일)
Raphael Ferreira
Raphael Ferreira 2018년 5월 13일
댓글: Raphael Ferreira 2018년 5월 15일
I'm working on a college project, I need to detect letters or numbers. I used OCR and it worked with this image that I captured with the camera:
Code:
%%Find and Highlight Text in an Image
% Copyright 2015 The MathWorks, Inc.
businessCard = imread('texto_1.png');
ocrResults = ocr(businessCard);
bboxes = locateText(ocrResults, 'C', 'IgnoreCase', true);
Iocr = insertShape(businessCard, 'FilledRectangle', bboxes);
figure; imshow(Iocr);
but when I tried with this image, it did not work:
Does anyone know how I can solve this problem? Or do you have any code so I can mirror?
I'm grateful already!
  댓글 수: 1
Image Analyst
Image Analyst 2018년 5월 13일
Try the color thresholder app on the Apps tab of the tool ribbon, or see some color segmentation demos in my File Exchange: https://www.mathworks.com/matlabcentral/fileexchange/?term=authorid%3A31862&sort=downloads_desc

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

채택된 답변

Image Analyst
Image Analyst 2018년 5월 13일
ocr() says that the characters must be at least 20 pixels high. Yours are right at that, so it's possible that you don't have enough resolution.
You might try deep learning instead.
  댓글 수: 6
Image Analyst
Image Analyst 2018년 5월 15일
Try the Color Thresholder on the Apps tab of the tool ribbon.
Raphael Ferreira
Raphael Ferreira 2018년 5월 15일
I think I'm beginning to understand. Soon I will post the result. Thank you both!

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Computer Vision Toolbox에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by