易语言腾讯开放平台ocr识别源码
利用腾讯AI开放平台公开的通用ocr识别做的,感觉识别率还是可以的就是文字多了速度有点慢。适合练手
使用了精易模块,自行去下载,我就不提供了
里边的app_id和app_key更换成自己的就可以直接使用。
申请地址: https://ai.qq.com/product/ocr.shtml#identify
直接用QQ登陆后去创建应用选择通用ocr就可以,其他随便填写。
版本 2
.支持库 spec
.子程序 _按钮1_被单击
.局部变量 time_stamp, 文本型
.局部变量 nonce_str, 文本型
.局部变量 sign, 文本型
.局部变量 post, 字节集
.局部变量 tp, 文本型
tp = 编码_URL编码 (编码_BASE64编码 (读入文件 (编辑框1.内容)), 真, 真)
time_stamp = 时间_取现行时间戳 (真)
nonce_str = 到文本 (取随机数 (10000, 9999999))
sign = 求sign (tp, time_stamp, nonce_str)
调试输出 (编码_URL解码 (到文本 (网页_访问 (“ https://api.ai.qq.com/fcgi-bin/ocr/ocr_generalocr”, 1, “app_id=” + #app_id + “&image=” + tp + “&time_stamp=” + time_stamp + “&nonce_str=” + nonce_str + “&sign=” + sign, , , , , , , )), 真))
.子程序 求sign, 文本型
.参数 tp, 文本型
.参数 time_stamp, 文本型
.参数 nonce_str, 文本型
.局部变量 str, 文本型
str = “app_id=” + #app_id + “&image=” + tp + “&nonce_str=” + nonce_str + “&time_stamp=” + time_stamp + “&app_key=” + #app_key
str = 校验_取md5 (到字节集 (str), 真)
返回 (str)
|