图像印章识别
命令说明
使用 Laiye Intelligent Document Processing 识别指定图像中的印章信息,识别结果为JSON格式
命令原型
jsonRet = Mage.ImageOCRStamp(filepath,config,time)
命令参数
参数 | 必选 | 类型 | 默认值 | 说明 |
---|---|---|---|---|
filepath | True | path | "" | 待识别图像的存放路径。支持jpeg、jpg、png、pdf、bmp、tiff格式,图像文件大小不能超过10M |
config | True | expression | {} | Laiye Intelligent Document Processing 的调用配置 |
time | True | number | 30000 | 指定等待时间(以毫秒为单位),如果超出该时间,则引发异常。默认30000毫秒(30秒) |
返回结果
jsonRet,将命令运行后的结果赋值给此变量。
运行实例
/**********************图像印章识别**********************
命令原型:
jsonRet = Mage.ImageOCRStamp("",{},30000)
入参:
filepath--待识别印章图片路径
config--mage配置,需配置Pubkey和Secret.Type:Dict
time--超时时间.默认单位:毫秒.Type:Int
出参:
jsonRet--函数调用的输出保存到的变量
注意事项:
需要获取mage对应的Key/Secret和URL
****************************************************/
Dim filepath='''''' // 待识别印章图片路径
Dim jsonRet="" // 输出结果
jsonRet = Mage.ImageOCRStamp(filepath,{"Pubkey":"XDDpJLuf57aLAYb49WAu3ise","Secret":"MWikeR0v3TbwdYwTCcPc44aGywaybKmJ","Url":"https://mage.uibot.com.cn"},30000)
TracePrint(jsonRet)