Reputation: 1713
My text with some not such complex math symbols as below.
Tesseract OCR default cannot recognize such math symbols (+-, angle). How can I recognize such math symbols by tesseract ?
Upvotes: 8
Views: 4685
Reputation: 413
just use the following statement:
pytesseract.image_to_string(Image.open(img), config='-l eng + equ')
Also make sure pytesseract is trained with equations.
tifi
Upvotes: 2