代码拉取完成,页面将自动刷新
# -*- 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)
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。