python批量图片文字识别_python 利用百度API批量识别图片文字【1】

本文档提供了一个Python脚本,利用百度API批量处理和压缩图片,然后进行文字识别。脚本首先调整图片大小以提高识别速度,然后调用AipOcr进行文字识别,并将结果保存到文本文件中。
摘要由CSDN通过智能技术生成

#!/usr/bin/env python3#-*- coding: utf-8 -*-

"""Created on Tue Jun 12 09:37:38 2018

利用百度api实现图片文本识别

@author: XnCSD"""

importglobfrom os importpathimportosfrom aip importAipOcrfrom PIL importImagedefconvertimg(picfile, outdir):'''调整图片大小,对于过大的图片进行压缩

picfile: 图片路径

outdir: 图片输出路径'''img=Image.open(picfile)

width, height=img.sizewhile (width * height > 4000000): #该数值压缩后的图片大约 两百多k

width = width // 2height= height // 2new_img=img.resize((width, height), Image.BILINEAR)

new_img.save(path.join(outdir, os.path.basename(picfile)))defbaiduOCR(picfile, outfile):"""利用百度api识别文本,并保存提取的文字

picfile: 图片文件名

outfile: 输出文件"""filename=path.basename(picfile)

APP_ID= '自己的' #刚才获取的 ID,下同

API_KEY = '自己的'SECRECT_KEY= '自己的'client=AipOcr(APP_ID, API_KEY, SECRECT_KEY)

i= open(picfile, 'rb')

img=i.read()print("正在识别图片:\t" +filename)

message= client.basicGeneral(img) #通用文字识别,每天 50 000 次免费

#message = client.basicAccurate(img) # 通用文字高精度识别,每天 800 次免费

print("识别成功!")

i.close()try:

filename1= filename.split('.')[0]

filename1= ''.join(filename1)

with open(outfile,'a+') as fo:for text in message.get('words_result'):

fo.writelines('\'' + filename1 + '\'' + ':' + text.get('words') + ',')

fo.writelines('\n')#fo.writelines("+" * 60 + '\n')

#fo.writelines("识别图片:\t" + filename + "\n" * 2)

#fo.writelines("文本内容:\n")

## 输出文本内容

#for text in message.get('words_result'):

#fo.writelines(text.get('words') + '\n')

#fo.writelines('\n' * 2)

except:print('识别失败')print("文本导出成功!")print()if __name__ == "__main__":

outfile= 'port_zidian.txt'outdir= 'tmp'

ifpath.exists(outfile):

os.remove(outfile)if notpath.exists(outdir):

os.mkdir(outdir)print("压缩过大的图片...")#首先对过大的图片进行压缩,以提高识别速度,将压缩的图片保存与临时文件夹中

try:for picfile in glob.glob("端口/*"):

convertimg(picfile, outdir)print("图片识别...")for picfile in glob.glob("tmp/*"):

baiduOCR(picfile, outfile)

os.remove(picfile)print('图片文本提取结束!文本输出结果位于 %s 文件中。' %outfile)

os.removedirs(outdir)except:print('失败')

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值