Effacer les filtres
Effacer les filtres

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

22 vues (au cours des 30 derniers jours)

Réponses (3)

Mike Shives
Mike Shives le 3 Nov 2023
Modifié(e) : DGM le 3 Nov 2023
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 le 14 Jan 2017

Walter Roberson
Walter Roberson le 14 Jan 2017
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 commentaires
Image Analyst
Image Analyst le 6 Août 2020
You're welcome to write your own OCR algorithm. You can start here.

Connectez-vous pour commenter.

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by