How to extract the text from images without using OCR. will you plz help me. in matlab 13 version
31 次查看(过去 30 天)
显示 更早的评论
回答(3 个)
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....
0 个评论
Image Analyst
2017-1-14
1 个评论
Mike Shives
2023-7-18
That article still requires using the OCR function, and therefore computer vision toolbox.
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!