码迷,mamicode.com
首页 > 编程语言 > 详细

python 图片识别

时间:2019-01-20 15:00:35      阅读:168      评论:0      收藏:0      [点我收藏+]

标签:dev   ima   安装完成   process   man   tesseract   href   安装路径   pytho   

安装库
pip install pytesseract
pip install Pillow

windows安装 tesseract 中文识别
下载地址:https://digi.bib.uni-mannheim.de/tesseract/
运行安装:tesseract-ocr-setup-4.00.00dev.exe
安装路径:C:\Anaconda3\Tesseract-OCR
安装完成后设置环境变量
1、添加环境变量
技术分享图片
2、添加系统变量
技术分享图片
重启

from PIL import Image
import pytesseract
text=pytesseract.image_to_string(Image.open(‘xxx.jpg‘),lang=‘chi_sim‘) # 使用中文
print(text)

python 图片识别

标签:dev   ima   安装完成   process   man   tesseract   href   安装路径   pytho   

原文地址:http://blog.51cto.com/zhizhimao/2344728

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!