需要安装一些库才能够进行:
pip3 install tesseract
apt-get install tesseract-ocr
pip install pytesseract
图片如下:
代码短小精悍:
from PIL import Image
import pytesseract
text = pytesseract.image_to_string(Image.open("ocr.png"))
print(text)
运行代码效果如下:
貌似这个中文识别不太友好啊。