Python 实现图像识别安装及遇坑实录
我们直接上图像识别的Python代码:
#需要先使用pip 安装PIL 和 pytesseract
from PIL import Image
import pytesseract
text=pytesseract.image_to_string(Image.open('demo.jpeg'),lang='chi_sim')#设置被识别的图片路径
print(text)
错误一:
安装的时候发现无法安装PIL,报错如下:
别急!
原因:
因python2可以使用pip install P.
原创
2021-04-22 10:50:32 ·
404 阅读 ·
1 评论