赞
踩
https://console.bce.baidu.com/ai/
创建文字识别应用,获取APP_ID、API_KEY、SECRET_KEY(可以参考之前的博客:用Python实现人像动漫化)# -*- coding: UTF-8 -*- from aip import AipOcr # 定义常量 根据自己的填充 APP_ID = '' API_KEY = '' SECRET_KEY = '' # 初始化文字识别分类器 aipOcr=AipOcr(APP_ID, API_KEY, SECRET_KEY) # 读取图片 filePath = "wenzi.png" def get_file_content(filePath): with open(filePath, 'rb') as fp: return fp.read() # 定义参数变量 options = { 'detect_direction': 'true', 'language_type': 'CHN_ENG', } # 网络图片文字文字识别接口 result = aipOcr.webImage(get_file_content(filePath),options) # 如果图片是url 调用示例如下 # result = apiOcr.webImage('http://www.xxxxxx.com/img.jpg') print(result)
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。