Python图像文字识别详解,实战代码
from PIL import Image
from pytesseract import image_to_string
# 设置tesseract.exe的安装路径
pytesseract.pytesseract.tesseract_cmd = r'C:\Program Files\Tesseract-OCR\tesseract.exe'
# 打开图像
image = Image.open('example.png')
# OCR识别
text = image_to_string(image)
# 打印结果
print(text)
这段代码展示了如何使用Python的Pillow库和pytesseract库来打开并识别图像中的文字。首先,你需要安装Pillow和pytesseract库。pytesseract.pytesseract.tesseract_cmd
设置了Tesseract-OCR的路径,这是一个Google开发的OCR引擎,用于文字识别。image_to_string
函数将图像转换为字符串,并返回识别的文本。
评论已关闭