跳到主要内容

图像验证码识别

命令说明

使用 Laiye Intelligent Document Processing 识别指定图像的验证码,返回识别结果

命令原型

sRet = Mage.ImageOCRVerifyCode(path,config,time)

命令参数

参数必选类型默认值说明
pathTruepath'''C:\Users'''要识别图像的路径,支持 jpeg、jpg、png、bmp、gif 等格式
configTrueexpression{}Laiye Intelligent Document Processing 的调用配置
timeTruenumber30000指定等待时间(以毫秒为单位),如果超出该时间,则引发异常。默认30000毫秒(30秒)

返回结果

sRet,将命令运行后的结果赋值给此变量。

运行实例

/**********************图像验证码识别**********************
命令原型:
sRet = Mage.ImageOCRVerifyCode('''C:\Users''',{},30000)
入参:
path--待识别图片路径
config--mage配置,需配置Pubkey和Secret.Type:Dict
time--超时时间.默认单位:毫秒.Type:Int
出参:
sRet--函数调用的输出保存到的变量
注意事项:
需要获取mage对应的Key/Secret和URL
****************************************************/
Dim sRet="" // 输出结果

sRet = Mage.ImageOCRVerifyCode('''E:\Desktop\1.jpg''',{"Pubkey":"684wM60rdbDnciVS7iXgZmNL","Secret":"AYzWVO0srKrN5t9rhL0jfhS05uaJnj92","Url":"https://demo.laiye.com:8082"},30000)
TracePrint(sRet)

可视化样例