Use of Matlab's OCR to recognize Math Equation

20 ビュー (過去 30 日間)
Wifraim Neil San Miguel
Wifraim Neil San Miguel 2021 年 1 月 16 日
回答済み: Shashank Gupta 2021 年 1 月 24 日
I'm trying to use Matlab's ocr to recognize math equations but the result was some unknown characters.
This is my input:
and the output was:
How can I improve or solve this problem? I just followed the code on the ocr documentaions and use the 'MathEquation' Language
here is the code:
x = imread('1.png');
results = ocr(x,'Language', 'MathEquation')
recognized = results.Text;
figure;
imshow(x);
text(600,150, recognized,'BackgroundColor', [1 1 1]);

回答 (1 件)

Shashank Gupta
Shashank Gupta 2021 年 1 月 24 日
Hi,
OCR detection MATLAB uses is actually tesseract implementation and Math Equation as mentioned in tesseract official page is mostly an experimental detector, It emphasize more on detecting the equation rather than recognition. But there are some work around, Try combining multiple detector like English + Math detector and see if you get meaningful texts.
I hope I gave you enough information to look around and explore.
Cheers.

カテゴリ

Help Center および File ExchangeImage Processing Toolbox についてさらに検索

製品


リリース

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by