调用百度接口进行图片识别

from aip import AipOcr

# 新建一个AipOcr对象
config = {
    'appId': '*******',
    'apiKey': '***********',
    'secretKey': '****************'
}
client = AipOcr(**config)

# 读取图片
def get_file_content(file_path):
    with open(file_path, 'rb') as fp:
        return fp.read()

# 识别图片里的文字
def img_to_str(image_path):
    image = get_file_content(image_path)
    # 调用通用文字识别, 图片参数为本地图片
    result = client.basicGeneral(image)
    # 结果拼接返回
    if 'words_result' in result:
        return '\n'.join([w['words'] for w in result['words_result']])

if __name__ == '__main__':
    print(img_to_str('177.png'))


发布了131 篇原创文章 · 获赞 220 · 访问量 24万+

猜你喜欢

转载自blog.csdn.net/qq_38900441/article/details/86706122
今日推荐