加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
ocr_util.py 1.10 KB
一键复制 编辑 原始数据 按行查看 历史
shuoGG 提交于 2018-04-04 16:40 . 增加了全局快捷键截屏识图功能
from aip import AipOcr
# 认证信息
APP_ID = ''
API_KEY = 'b52a2d05d6c644518b15d747e795b78c'
SECRET_KEY = 'ceb97436c7e046468dd578db104c6025'
def get_ocr_str(file_path, origin_format=True):
"""
图片转文字
:param file_path: 图片路径
:return:
"""
with open(file_path, 'rb') as fp:
file_bytes = fp.read()
return get_ocr_str_from_bytes(file_bytes, origin_format)
def get_ocr_str_from_bytes(file_bytes, origin_format=True):
"""
图片转文字
:param file_bytes: 图片的字节
:return:
"""
options = {
'detect_direction': 'false',
'language_type': 'CHN_ENG',
}
ocr = AipOcr(APP_ID, API_KEY, SECRET_KEY)
result_dict = ocr.basicGeneral(file_bytes, options)
if origin_format:
result_str = '\n'.join([entity['words'] for entity in result_dict['words_result']])
else:
result_str = ''.join([entity['words'] for entity in result_dict['words_result']])
return result_str
if __name__ == '__main__':
IMAGE_PATH = "test.jpg"
print(get_ocr_str(IMAGE_PATH))
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化