How to extract the text from images without using OCR. will you plz help me. in matlab 13 version

조회 수: 37 (최근 30일)
이 질문에 Rik 님이 플래그를 지정함

답변 (3개)

Mike Shives
Mike Shives 2023년 11월 3일
편집: DGM 2023년 11월 3일
A workaround is to install tesseract on your PC.
The workflow in Matlab is to print the image you want to run OCR to a .tif (.jpg works too), do a system call to tesseract, then read its output into matlab.
For example:
imwrite(im,'image.tif');
system('tesseract image.tif res');
a = importdata('res.txt');
you may want to use textscan instead of importdata....

Image Analyst
Image Analyst 2017년 1월 14일

Walter Roberson
Walter Roberson 2017년 1월 14일
The topic of recognizing text is known as Optical Character Recognition, often abbreviated to OCR. Any technique that can recognize text in images is an ocr technique. It is not possible to recognize text without using ocr, because anything recognizes text is defined to be ocr.
  댓글 수: 4

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

태그

Community Treasure Hunt

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

Start Hunting!

Translated by