溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

通過(guò)百度文字識(shí)別的API來(lái)實(shí)現(xiàn)把圖片內(nèi)容寫入到txt文件

發(fā)布時(shí)間:2020-07-05 06:00:41 來(lái)源:網(wǎng)絡(luò) 閱讀:1027 作者:icestick8586 欄目:編程語(yǔ)言

1、首先去百度注冊(cè)一個(gè)賬戶,然后選擇對(duì)應(yīng)的識(shí)別類型創(chuàng)建對(duì)應(yīng)的應(yīng)用,獲取AppID,APIKey,SecretKey,請(qǐng)參考百度官方接入文檔http://ai.baidu.com/docs#/Begin/top
2、官方使用文檔http://ai.baidu.com/docs#/OCR-Python-SDK/top

#-*- coding: UTF-8 -*-
#前提是python已安裝aip庫(kù)--》pip install baidu-aip

import os
from aip import AipOcr
import json
APP_ID = '你注冊(cè)賬號(hào)創(chuàng)建應(yīng)用后得到的APPID'
API_KEY = '你注冊(cè)賬號(hào)創(chuàng)建應(yīng)用后得到的API_KEY'
SECRET_KEY = '你注冊(cè)賬號(hào)創(chuàng)建應(yīng)用后得到的SECRET_KEY '
aipOcr = AipOcr(APP_ID, API_KEY, SECRET_KEY)
os.chdir("E:\\office\\src_pic")  #你需要轉(zhuǎn)換的圖片目錄
dirs = os.listdir()
def get_file_content(filePath):
    with open(filePath, 'rb') as fp:
        return fp.read()
options = {}
options["language_type"] = "CHN_ENG"
options["detect_direction"] = "true"
options["detect_language"] = "true"
options["probability"] = "true"

print('開始處理,共'+str(len(dirs))+"張圖片。")
flag=0
T = 0 #統(tǒng)計(jì)處理圖片成功的數(shù)量
for filePath in dirs:
    if filePath.split('.')[-1]=='txt':continue
    flag+=1
    print('正在處理第'+str(flag)+'張圖片')
    try:
        result = aipOcr.basicGeneral(get_file_content(filePath), options)
    except BaseException as e:
        print(e)
    else:
        try:
            with open(filePath.split('.')[0]+'.txt','w',encoding='utf-8') as f:
                for i in result['words_result']:
                        f.write(i['words']+'\n')
                T += 1
        except BaseException as e :
            print(e)
        else:
            print('處理完成')
print('{}全部處理完成!{}'.format("="*30,"="*30))
print('處理成功的圖片有{}張,處理失敗的圖片有{}張'.format(T,len(dirs)-T))
向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI