亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

通過百度文字識別的API來實現把圖片內容寫入到txt文件

發布時間:2020-07-05 06:00:41 來源:網絡 閱讀:1028 作者:icestick8586 欄目:編程語言

1、首先去百度注冊一個賬戶,然后選擇對應的識別類型創建對應的應用,獲取AppID,APIKey,SecretKey,請參考百度官方接入文檔http://ai.baidu.com/docs#/Begin/top
2、官方使用文檔http://ai.baidu.com/docs#/OCR-Python-SDK/top

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

import os
from aip import AipOcr
import json
APP_ID = '你注冊賬號創建應用后得到的APPID'
API_KEY = '你注冊賬號創建應用后得到的API_KEY'
SECRET_KEY = '你注冊賬號創建應用后得到的SECRET_KEY '
aipOcr = AipOcr(APP_ID, API_KEY, SECRET_KEY)
os.chdir("E:\\office\\src_pic")  #你需要轉換的圖片目錄
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 #統計處理圖片成功的數量
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問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

类乌齐县| 临沭县| 南江县| 阳江市| 山阳县| 泗阳县| 曲周县| 闻喜县| 内黄县| 长宁县| 宁远县| 临邑县| 定陶县| 博野县| 比如县| 南乐县| 卓尼县| 舞钢市| 涿州市| 柳江县| 收藏| 济阳县| 元阳县| 宝丰县| 盐津县| 闽清县| 竹山县| 隆回县| 易门县| 古浪县| 格尔木市| 万荣县| 石泉县| 南开区| 饶河县| 舒兰市| 临江市| 伽师县| 宁陕县| 铅山县| 上虞市|