1. 安装 tesseract-ocr 包

安装方法: sudo apt-get install tesseract-ocr



2. 安装 PIL
PIL(python imaging library)是python中的图像处理库

安装方法: sudo apt-get install python-imaging




3. 安装 pytesseract
安装方法: pip install pytesseract




4. pytesseract使用示例

新建py文件或者直接在终端中输入以下程序:

import pytesseract
from PIL import Image

img = Image.open("./01.jpg")
code = pytesseract.image_to_string(img)
print code 


01.jpg:



验证:




posted on 2017-09-16 10:31  未雨愁眸  阅读(661)  评论(0编辑  收藏  举报