加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
pytesseract库_图像识别.py 565 Bytes
一键复制 编辑 原始数据 按行查看 历史
fengmingshan 提交于 2021-12-15 20:46 . 找回资料提交
# -*- coding: utf-8 -*-
"""
Created on Wed Apr 25 11:16:19 2018
@author: Administrator
"""
from PIL import Image
from pytesseract import image_to_string
path = r'd:\_python' + '\\'
image = Image.open(path + '2809.jpg')
imgry = image.convert('L')#图像加强,二值化
table = []
threshold = 140
for i in range(256):
if i < threshold:
table.append(0)
else:
table.append(1)
imgpoint = imgry.point(table,'1')
imgpoint.save(path + 'out.jpg')
text = image_to_string(imgpoint,config='-psm 7')
print(text)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化