字体识别
Posted energetic
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了字体识别相关的知识,希望对你有一定的参考价值。
from aip import AipOcr
""" 你的 APPID AK SK """
APP_ID = ‘ ‘
API_KEY = ‘‘
SECRET_KEY = ‘‘
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(r‘D:计算机二级picture.jpg‘)
""" 调用通用文字识别, 图片参数为本地图片 """
client.basicGeneral(image);
""" 如果有可选参数 """
options = {}
options["language_type"] = "CHN_ENG"
options["detect_direction"] = "true"
options["detect_language"] = "true"
options["probability"] = "true"
""" 带参数调用通用文字识别, 图片参数为本地图片 """
a=client.basicGeneral(image, options)
print(a)
以上是关于字体识别的主要内容,如果未能解决你的问题,请参考以下文章