Answer the question
In order to leave comments, you need to log in
How to make Python Tesseract ORC recognize Russian language?
I wrote just such a program that recognizes text from an image.
import pytesseract
import translatepy
import cv2
pytesseract.pytesseract.tesseract_cmd = 'Resources\\tesseract.exe'
img = cv2.imread('1.png')
text = pytesseract.image_to_string(img)[:-2:]
print(text)
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question