跳到主要内容

图像多票据识别

命令说明

使用 Laiye Intelligent Document Processing 识别指定图像的多种票据,识别结果返回数组

命令原型

arrayRet = Mage.ImageOCRInvoice(path,config,time)

命令参数

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

返回结果

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

运行实例

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

arrayRet = Mage.ImageOCRInvoice(path,{"Pubkey":"UsCqnK8TOHBosdYxkuC6Zmop","Secret":"TAfkRueOzvUeJy47jE7xEpjJ6qapyA4u","Url":"https://demo.laiye.com:8082"},30000)
Traceprint(arrayRet)

可视化样例