python 进行图片的文字识别
Posted 道亦无名
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 进行图片的文字识别相关的知识,希望对你有一定的参考价值。
需要安装一些库才能够进行:
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)
运行代码效果如下:
貌似这个中文识别不太友好啊。
以上是关于python 进行图片的文字识别的主要内容,如果未能解决你的问题,请参考以下文章