文字识别(需要先安装百度的环境),申请百度的秘钥,识别后会写到txt文档中

Posted lurj

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了文字识别(需要先安装百度的环境),申请百度的秘钥,识别后会写到txt文档中相关的知识,希望对你有一定的参考价值。

from aip import AipOcr
""" 你的 APPID AK SK """
APP_ID = ‘17746415‘
API_KEY = ‘eFCKvYoFi6g5nLirGH7zedYG‘
SECRET_KEY = ‘9kigA0Sy9oaCjs0OBaHyXbkpzyXQngIz‘
client = AipOcr(APP_ID, API_KEY, SECRET_KEY)
""" 读取图片 """
""" 读取图片 """
def get_file_content(filePath):
with open(filePath, ‘rb‘) as fp:
return fp.read()

image = get_file_content(‘2.jpg‘)

""" 如果有可选参数 """
options = {}
options["language_type"] = "CHN_ENG"
options["detect_direction"] = "false"
options["detect_language"] = "false"
options["probability"] = "false"

""" 带参数调用通用文字识别, 图片参数为本地图片 """
res = client.basicGeneral(image, options)
word_lists = res["words_result"]
for i in word_lists:
print(i["words"])
with open("check.txt","a") as f:
f.write(i["words"]+" ")

以上是关于文字识别(需要先安装百度的环境),申请百度的秘钥,识别后会写到txt文档中的主要内容,如果未能解决你的问题,请参考以下文章

Python每日一练(23)-基于百度 AI 识别抓取的表情包

vue中使用百度地图

vue中使用百度地图

vue中使用百度地图

python调用百度ocr接口,实现图片内文字识别

调用百度地图API