2 Star 1 Fork 0

francis/BaiduOCR

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
id_card.py 821 Bytes
一键复制 编辑 原始数据 按行查看 历史
francis 提交于 2018-03-01 23:12 . 1.0.1
#!/usr/bin/python
# -*- coding: UTF-8 -*-
import json
from aip import AipOcr
# 配置应用参数
APP_ID = "10847087"
API_KEY = "GXrruGB4y8j1Lr58sI5FVQst"
SECRET_KEY = "ZtXrFMnwGNN3QKZXzuSTVTshlmV0nQHs"
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('images/id_card.jpg')
# 识别身份证正面参数为"front" 反面为"back"
idCardSide = "front"
# 可选参数
options = {}
options["detect_direction"] = "true"
options["detect_risk"] = "false"
# 调用身份证识别API
output = client.idcard(image, idCardSide, options)
# 获取原始数据
print(output)
# 提取识别结果后的输出
result = json.dumps(output.get("words_result"))
print(result)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/francisdu/BaiduOCR.git
git@gitee.com:francisdu/BaiduOCR.git
francisdu
BaiduOCR
BaiduOCR
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385