图片内容定点识别

安装模块:baidu-aip和pillow

   from aip import AipOcr
import os,shutil,time
from PIL import Image


print("\n\n   ~~~~~~~      ~~~~~~~~\n  ~~~~~~~~~~  ~~~~~~~~~~~\n   ~~~~~~冯冯小甜心~~~~~\n    ~~~~~          ~~~~\n      ~~~~~~~~~~~~~~~\n         ~~~~~~~~~\n            ~~~\n")

#初始化全局变量
exit_='Y'
while True:
    pwd = input('请输入工具码(输入exit退出):')
    if pwd=='exit':
        break
    if pwd!='19961220':
        print("密码错误,请重新输入!")
        continue
    # 设置登录密码
    if pwd == '19961220':
        print('登录成功!\n')
        while True:
            file_ph=input('请输入需处理图片的路径:')
            #主功能区
            try:
                # 这里填你的 APPID AK SK  获取网址:https://ai.baidu.com/tech/ocr/general
                APP_ID = '23562478'
                API_KEY = 'hXl1TFWRDipv0WVyhj7c0Fkp'
                SECRET_KEY = 'qz1k3Ulcq9YmlRM8IHqLRQ4MHSh5TLGs'

                client = AipOcr(APP_ID, API_KEY, SECRET_KEY)

                # 定义参数变量
                options = {
                    # 定义图像方向
                    'detect_direction': 'true',
                    # 识别语言类型,默认为'CHN_ENG'中英文混合
                    'language_type': 'CHN_ENG',
                    # 是否检测语言,默认不检测。当前支持(中文、英语、日语、韩语)
                    'detect_language': 'true',
                    # 是否返回识别结果中每一行的置信度
                    'probability': 'false',
                }

                file_ph_res=os.path.dirname(file_ph)+'\\处理后' # 取文件路径的上级路径,生成文件夹
                # 若合并后文件路径不存在,创建
                if not os.path.isdir(file_ph_res):
                    os.mkdir(file_ph_res)
                is_ok = 0  # 解析文件计数器
                for root, dirs, files in os.walk(file_ph):
                    if files:
                        for file in files:
                            file_name = root + '\\'+file
                            if '.png' in file_name:
                                print(file_name)

                                img = Image.open(file_name)
                                size = img.size
                                # 准备将图片横向切割需求内容
                                weight = int(size[0])
                                height = int(size[1])
                                weight_ym_x1 =int(weight*1299/1654)
                                weight_ym_y1 =0
                                weight_ym_x2 =int(weight*1511/1654)
                                weight_ym_y2 =int(height*53/1065)
                                box = (weight_ym_x1, weight_ym_y1, weight_ym_x2, weight_ym_y2)
                                region = img.crop(box)
                                region.save(file_ph+"\\页码.jpg")

                                # 读取图片
                                with open(file_ph+"\\页码.jpg", 'rb') as fp:
                                    image_ym = fp.read()
                                # 调用通用文字识别接口
                                result = client.basicGeneral(image_ym, options)
                                time.sleep(1)
                                if result['words_result'] and '页码' in  result['words_result'][0]['words']:
                                    # 获取日期坐标
                                    weight_rq_x1 = int(weight * 1225 / 1654)
                                    weight_rq_y1 = int(height * 263 / 1065)
                                    weight_rq_x2 = int(weight * 1375 / 1654)
                                    weight_rq_y2 = int(height * 317 / 1065)
                                    # 获取收款人坐标
                                    weight_skr_x1 = int(weight * 477 / 1654)
                                    weight_skr_y1 = int(height * 503 / 1065)
                                    weight_skr_x2 = int(weight * 845 / 1654)
                                    weight_skr_y2 = int(height * 555 / 1065)
                                    # 获取金额坐标
                                    weight_je_x1 = int(weight * 471 / 1654)
                                    weight_je_y1 = int(height * 751 / 1065)
                                    weight_je_x2 = int(weight * 845 / 1654)
                                    weight_je_y2 = int(height * 800 / 1065)
                                    box_rq = (weight_rq_x1, weight_rq_y1, weight_rq_x2, weight_rq_y2)
                                    box_skr = (weight_skr_x1, weight_skr_y1, weight_skr_x2, weight_skr_y2)
                                    box_je = (weight_je_x1, weight_je_y1, weight_je_x2, weight_je_y2)
                                    region = img.crop(box_rq)
                                    region.save(file_ph + "\\日期.jpg")
                                    region = img.crop(box_skr)
                                    region.save(file_ph + "\\收款人.jpg")
                                    region = img.crop(box_je)
                                    region.save(file_ph + "\\金额.jpg")
                                    # 读取图片
                                    with open(file_ph + "\\日期.jpg", 'rb') as fp:
                                        image_rq = fp.read()
                                    # 调用通用文字识别接口
                                    result_rq = client.basicGeneral(image_rq, options)
                                    time.sleep(1)
                                    rq=result_rq['words_result'][0]['words']

                                    with open(file_ph + "\\收款人.jpg", 'rb') as fp:
                                        image_skr = fp.read()
                                    # 调用通用文字识别接口
                                    result_skr = client.basicGeneral(image_skr, options)
                                    time.sleep(1)
                                    skr=result_skr['words_result'][0]['words']

                                    with open(file_ph + "\\金额.jpg", 'rb') as fp:
                                        image_je = fp.read()
                                    # 调用通用文字识别接口
                                    result_je = client.basicGeneral(image_je, options)
                                    time.sleep(1)
                                    je=result_je['words_result'][0]['words']
                                    file_name_final=skr + "_" + rq + "_" + je + ".png"
                                else:
                                    # 获取日期坐标
                                    weight_rq_x1 = int(weight * 1225 / 1654)
                                    weight_rq_y1 = int(height * 157 / 1065)
                                    weight_rq_x2 = int(weight * 1375 / 1654)
                                    weight_rq_y2 = int(height * 205 / 1065)
                                    # 获取收款人坐标
                                    weight_skr_x1 = int(weight * 477 / 1654)
                                    weight_skr_y1 = int(height * 391 / 1065)
                                    weight_skr_x2 = int(weight * 845 / 1654)
                                    weight_skr_y2 = int(height * 441 / 1065)
                                    # 获取金额坐标
                                    weight_je_x1 = int(weight * 480 / 1654)
                                    weight_je_y1 = int(height * 635 / 1065)
                                    weight_je_x2 = int(weight * 845 / 1654)
                                    weight_je_y2 = int(height * 689 / 1065)
                                    box_rq = (weight_rq_x1, weight_rq_y1, weight_rq_x2, weight_rq_y2)
                                    box_skr = (weight_skr_x1, weight_skr_y1, weight_skr_x2, weight_skr_y2)
                                    box_je = (weight_je_x1, weight_je_y1, weight_je_x2, weight_je_y2)
                                    region = img.crop(box_rq)
                                    region.save(file_ph + "\\日期.jpg")
                                    region = img.crop(box_skr)
                                    region.save(file_ph + "\\收款人.jpg")
                                    region = img.crop(box_je)
                                    region.save(file_ph + "\\金额.jpg")
                                    # 读取图片
                                    with open(file_ph + "\\日期.jpg", 'rb') as fp:
                                        image_rq = fp.read()
                                    # 调用通用文字识别接口
                                    result_rq = client.basicGeneral(image_rq, options)
                                    time.sleep(1)
                                    rq = result_rq['words_result'][0]['words']

                                    with open(file_ph + "\\收款人.jpg", 'rb') as fp:
                                        image_skr = fp.read()
                                    # 调用通用文字识别接口
                                    result_skr = client.basicGeneral(image_skr, options)
                                    time.sleep(1)
                                    skr = result_skr['words_result'][0]['words']

                                    with open(file_ph + "\\金额.jpg", 'rb') as fp:
                                        image_je = fp.read()
                                    # 调用通用文字识别接口
                                    result_je = client.basicGeneral(image_je, options)
                                    time.sleep(1)
                                    je = result_je['words_result'][0]['words']
                                    file_name_final=skr + "_" + rq + "_" + je + ".png"

                                # 选取固定位置解析的内容
                                shutil.copy(file_name,file_ph_res+'\\'+file_name_final)
                                is_ok+=1
                if is_ok!=0:
                    print("处理成功!\n")
                    # 临时文件删除
                    os.unlink(file_ph + "\\页码.jpg")
                    os.unlink(file_ph + "\\日期.jpg")
                    os.unlink(file_ph + "\\收款人.jpg")
                    os.unlink(file_ph + "\\金额.jpg")
                else:
                    print("处理失败,未检测到png文件!\n")
            except Exception as e:
                print("处理失败!错误代码:", e)
            exit_=input("是否继续?(Y/N):")
            if exit_.upper()=='N':
                break
    if exit_.upper()=='N':
        break
os.system('pause')
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 205,386评论 6 479
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 87,939评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 151,851评论 0 341
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,953评论 1 278
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,971评论 5 369
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,784评论 1 283
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,126评论 3 399
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,765评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 43,148评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,744评论 2 323
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,858评论 1 333
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,479评论 4 322
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,080评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,053评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,278评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,245评论 2 352
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,590评论 2 343

推荐阅读更多精彩内容