python36图像文字识别安装全过程

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python36图像文字识别安装全过程相关的知识,希望对你有一定的参考价值。

1.安装相应库
pip install pytesseract
pip install pillow

2.下载并安装tesseract-ocr
链接:https://pan.baidu.com/s/113o5fIAe94_7autPI4ANiA
提取码:27uh
安装时下拉选择 Chinese(simple),以便对中文支持

3.安装完成后将tesseract-ocr目录(C:Tesseract-OCR)设置到环境变量中
4.修改pytesseract.py文件中字段
将tesseract_cmd=‘tesseract‘改成
tesseract_cmd = r‘C:Tesseract-OCR esseract.exe‘

5.在pycharm中输入下面代码,查看结果吧
import pytesseract
from PIL import Image,ImageEnhance

image = Image.open(r"C:UsersAdministratorDesktophello2.JPG")
enhancer = ImageEnhance.Contrast(image)
image2 = enhancer.enhance(4)
code = pytesseract.image_to_string(image2,lang="chi_sim+eng")
print(code)

以上是关于python36图像文字识别安装全过程的主要内容,如果未能解决你的问题,请参考以下文章

用python写一个图像文字识别OCR工具

OpenCV 车辆检测/人脸识别+图像拼接+文字识别

Python 识别图片文字

Python图像处理之图片文字识别(OCR)

python 识别图片文字

文字识别(输入为自然场景中的图像)