我想使用名片识别OCR,主要研究了腾讯云的智能映像和腾讯Youtu.
解析后的汉字直接是unicode,例如u'\ u90e8 \ u95e8 \ u526f \ u603b \ u7ecf \ u7406',根据腾讯的文档,代码经验:
首先,介绍一下.
import time
import random
import hmac, hashlib
import binascii
import base64
import requests
import os
import json
然后根据文档生成签名(签名权),此步骤不是很顺利. 在需要替换的位置中,自己查找文件名片识别服务,例如appid,secret_id,secret_key. 至于水桶,我不明白它的用途.
appid = 'your app id' #自己填
secret_id = 'your secret id' #自己填
secret_key = 'your secret key' #自己填
bucket= 'seem no use' #自己填
# 还有个https的,我没试
url = 'http://recognition.image.myqcloud.com/ocr/businesscard'
now = int(time.time())
rdm = random.randint(0,9999999999)
expired = now + 2592000 #一个月
plain_text = 'a='+appid+'&b='+bucket+'&k='+secret_id+'&e='+str(expired)+'&t='+str(now)+'&r='+str(rdm)+'&u=0&f='
bin = hmac.new(secret_key.encode(), plain_text.encode(), hashlib.sha1)
s = bin.hexdigest()
s = binascii.unhexlify(s)
s = s + plain_text.encode('ascii')
signature = base64.b64encode(s).rstrip() # 生成签名
print(signature)
接下来,有两种情况. 如果要识别的图像是URL,则相对简单. 设置标题和数据以发送请求. 图片网址以Utop为例. 只需打印出结果即可.
headers = {
'Authorization': signature,
'content-type': 'application/json',
}
data = {
'appid': appid,
'url_list': ['http://yoututest-1251966477.cossh.myqcloud.com/mingpian.jpg']
}
r = requests.post(url, headers=headers, data = json.dumps(data))
ret = r.json()
print(ret)
因为我不熟悉'content-type'的请求: 'multipart / form-data',所以研究了很长时间名片识别服务,后来发现它实际上很简单.
headers = {
'Authorization': signature,
# 不用设置content-type!!!
}
files = {
'appid': appid,
# 可以多张图片,但是必须image开头,路径自己设置好
'image[0]': ( 'image[0].jpeg', open(os.path.abspath('mingpian0.jpeg'), 'rb'), 'image/jpeg', {}),
# 'image[1]': ( 'image[1].jpeg', open(os.path.abspath('mingpian1.jpeg'), 'rb'), 'image/jpeg', {}),
}
r = requests.post(url, headers=headers, files=files)
ret = r.json()
print(ret)
您是否发现该水桶根本没有用过,没有从我的账户中扣除任何钱?也许是因为腾讯云提前付款并在下个月扣除了这笔钱吗?等一下.
Youtube的演示做得很好,吸引了我,但是关于识别结果,有几点需要注意: 首先,返回的结果很多,可能是一些原始数据. 第二,我没有得到汉字的结果编码. 它以\ x开头. 在这里,我仍然会体验到它,参考文档,它与上面的腾讯云没有太大区别.
顺便说一下,Youtu演示具有python代码. 我也从这里的简化中借用了. 每个人都知道,如果我不再次敲它,我会认为那不是真的.
首先介绍一堆.
# import 跟上面一样吧
签名部分也相似,但是存储桶已经成为申请Youtu的qq号,随便写这个字段似乎也可以.
appid = 'your app id' # 在优图申请应用后就得到
secret_id = 'your secret id' # 在优图申请应用后就得到
secret_key = 'your secret key' # 在优图申请应用后就得到
userid= 'your qq number'
url = 'http://api.youtu.qq.com/youtu/ocrapi/bcocr'
now = int(time.time())
rdm = random.randint(0,9999999999)
expired = now + 2592000
plain_text = 'u=' + userid + '&a=' + appid + '&k=' + secret_id + '&e=' + str(expired) + '&t=' + str(now) + '&r=' + str(rdm) + '&f='
bin = hmac.new(secret_key.encode(), plain_text.encode(), hashlib.sha1)
s = bin.hexdigest()
s = binascii.unhexlify(s)
s = s + plain_text.encode('ascii')
signature = base64.b64encode(s).rstrip() # 生成签名
print(signature)
还有两种情况,使用url和image,但是Utop的image方法实际上被转换为base64字符串,这相对简单.
headers = {
'Authorization': signature,
'Content-Type': 'text/json',
}
data = {
'app_id': appid,
'session_id': '',
}
# 下面自行选择字段
data['url'] = 'http://yoututest-1251966477.cossh.myqcloud.com/mingpian.jpg'
data["image"] = base64.b64encode(open(os.path.abspath('mingpian.jpeg'), 'rb').read()).rstrip().decode('utf-8')
r = requests.post(url, headers=headers, data = json.dumps(data))
ret = r.json()
print(ret)
我不会发布返回的结果.
本文来自电脑杂谈,转载请注明本文网址:
http://www.pc-fly.com/a/ruanjian/article-208056-1.html