欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

python实现图像文字识别

程序员文章站 2022-05-09 21:38:21
1.安装python需要的包(1).pip install pillow.(2).pip install pytesser3(3).pip install pytesseract(4).pip install wheel2.安装Tesseract-OCR稳定版:https://digi.bib.uni-mannheim.de/tesseract/tesseract-ocr-setup-3.05.01.exe语言包:下载完成后放到百度网盘:链接: https://pan.bai...

1.安装python需要的包

(1).pip install pillow.

(2).pip install pytesser3

(3).pip install pytesseract

(4).pip install wheel

2.安装Tesseract-OCR

稳定版:https://digi.bib.uni-mannheim.de/tesseract/tesseract-ocr-setup-3.05.01.exe

语言包:

下载完成后放到百度网盘:链接: https://pan.baidu.com/s/1phRCtsv3FKNORfOEvt9L1g 提取码: 4mcf 复制这段内容后打开百度网盘手机App,操作更方便哦

语言包位置:

python实现图像文字识别

3.安装配置环境

(1)TESSDATA_PREFIX

python实现图像文字识别

(2)PATH下增加

python实现图像文字识别

(3)修改python\Lib\site-packages\pytesseract\pytesseract.py

python实现图像文字识别

4.配置好环境后重启电脑,运行图像中文识别,和运行后识别的文字,图像放在自己项目下即可

# -*- coding: utf-8 -*-
# author: ZHT
# 图像识别初识

import pytesseract
from PIL import Image


image = Image.open('1.jpg')
code = pytesseract.image_to_string(image, lang="chi_sim+eng")
print(code)

python实现图像文字识别

本文地址:https://blog.csdn.net/qq_19897551/article/details/108263129

相关标签: python 图像识别