当前位置: 代码迷 >> 综合 >> pillow、pytesseract-ocr、pytesseract的安装和中文的识别
  详细解决方案

pillow、pytesseract-ocr、pytesseract的安装和中文的识别

热度:32   发布时间:2023-12-12 20:36:49.0

安装pytesseract库,必须先安装其依赖的PIL及tesseract-ocr,其中PIL为图像处理库,而后面的tesseract-ocr则为google的ocr识别引擎。

一、安装PIL(换源)

pip install -i https://pypi.tuna.tsinghua.edu.cn/simple pillow
在这里插入图片描述

二、安装Tesseract-OCR

它的git:https://github.com/tesseract-ocr/tesseract
直接下载地址:https://digi.bib.uni-mannheim.de/tesseract/
找的最新版本:
在这里插入图片描述
在这里插入图片描述

我添加了math 跟chinese(因为是国内网络的原因吧,下载都失败,所以不用选择,后面自己下载后,添加到相应目录就好)

在这里插入图片描述

安装后需要配置环境变量

在这里插入图片描述
在这里插入图片描述
在这里插入图片描述
在cmd下测试
tesseract -v
在这里插入图片描述

三、安装pytesseract(换源)

pip install -i https://pypi.tuna.tsinghua.edu.cn/simple pytesseract
在这里插入图片描述

重新开机后测试

在这里插入图片描述

importpytesseract
fromPILimportImage
image=Image.open("G:\\Python\\1.png")
print(image)
vcode=pytesseract.image_to_string(image)
print(vcode)

添加中文的识别库

github:
https://github.com/tesseract-ocr
在这里插入图片描述
第一个就好
在这里插入图片描述

将下载的.traineddata放到这个安装的这个目录下:

在这里插入图片描述
在这里插入图片描述
测试带代码

import pytesseract
from PIL import Image
image = Image.open("G:\\Python\\ch_sim.png")
print (image)
vcode = pytesseract.image_to_string(image, lang='chi_sim')
print (vcode)