吾爱、小杜 发表于 2018-4-18 14:04

【易语言练手源码】腾讯开放平台ocr识别源码

本帖最后由 吾爱、小杜 于 2018-4-18 14:10 编辑

利用腾讯AI开放平台公开的通用ocr识别做的,感觉识别率还是可以的就是文字多了速度有点慢。适合练手
使用了精易模块,自行去下载,我就不提供了

里边的app_id和app_key更换成自己的就可以直接使用。
申请地址:https://ai.qq.com/product/ocr.shtml#identify
直接用QQ登陆后去创建应用选择通用ocr就可以,其他随便填写。

下载链接: https://pan.baidu.com/s/10tbEjOYW-VSJ1AvvOXAGrg 密码: 7g9x

.版本 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)

martinnly 发表于 2018-5-10 21:40

.版本 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=” + “id号” + “&image=” + tp + “&time_stamp=” + time_stamp + “&nonce_str=” + nonce_str + “&sign=” + sign, , , , , , , )), 真))


.子程序 求sign, 文本型
.参数 tp, 文本型
.参数 time_stamp, 文本型
.参数 nonce_str, 文本型
.局部变量 str, 文本型
.局部变量 str2, 文本型

str = “app_id=” + “id号” + “&image=” + tp + “&nonce_str=” + nonce_str + “&time_stamp=” + time_stamp + “&app_key=” + “key号”

str = 校验_取md5 (到字节集 (str), 真)
返回 (str)

.子程序 _按钮2_被单击

通用对话框1.打开 ()
.如果真 (通用对话框1.文件名 ≠ “”)
    编辑框1.内容 = 通用对话框1.文件名

为啥我用不了?:rggrg

吾爱、小杜 发表于 2018-4-18 16:16

tailor001 发表于 2018-4-18 15:53
好像有
接口名称        接口描述        API地址
语种识别        识别给出文本的语种        https://api.ai.qq.com/fcgi-bin/nlp/ ...

那个只是识别给出的文字是什么语言的,返回结果只有4个{zh,en,jp,kr}

lao_jin 发表于 2018-4-18 14:35

强大了,感谢楼主的分享。 有用过TX的OCR效果确实不错。

阿苏斯 发表于 2018-4-18 14:35

赞一个,不错

Zero__Lee 发表于 2018-4-18 14:50

tailor001 发表于 2018-4-18 14:56

可以识别日文不?

吾爱、小杜 发表于 2018-4-18 15:00

tailor001 发表于 2018-4-18 14:56
可以识别日文不?

这个没试过{:301_1009:}

tailor001 发表于 2018-4-18 15:53

吾爱、小杜 发表于 2018-4-18 15:00
这个没试过

好像有
接口名称        接口描述        API地址
语种识别        识别给出文本的语种        https://api.ai.qq.com/fcgi-bin/nlp/nlp_textdetect
但是不知道怎么用

吾爱、小杜 发表于 2018-5-11 16:22

martinnly 发表于 2018-5-10 21:40
.版本 2
.支持库 spec



常量数据表里边的id和key你有没有填进去
页: [1] 2 3
查看完整版本: 【易语言练手源码】腾讯开放平台ocr识别源码