python 图片文字识别
时间: 2023-10-24 20:09:50 浏览: 82
基于python的图片文字识别。
5星 · 资源好评率100%
您可以使用Python中的Tesseract模块来进行图片文字识别。您可以使用以下命令来安装该模块:
pip install pytesseract
然后,您可以使用以下代码来进行图片文字识别:
```
import pytesseract
from PIL import Image
# 读取图片
img = Image.open('image.png')
# 将图片转为字符串
text = pytesseract.image_to_string(img, lang='eng')
# 打印识别的字符串
print(text)
```
请注意,Tesseract模块需要安装Tesseract OCR引擎才能正常工作。您可以在https://github.com/UB-Mannheim/tesseract/wiki下载并安装它。
阅读全文