🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
返回值为json格式,各字段如下: |参数|类型|说明| |:------|:-----|:-----| |code|string|结果码(具体见错误码)| |data|json|详见data说明| |desc|string|描述| |sid|string|会话ID| sid字段用于追查问题,出现问题时可提供sid给讯飞技术人员帮助排查。 data各字段说明如下: |参数|类型|说明| |:------|:-----|:-----| |block|对象数组|区域块信息| |type|string|区域块类型(text-文本,image-图片)| |line|对象数组|行信息| |word|对象数组|字(中文),单词(英文)| |content|string|内容| |confidence|float|后验概率| |location|对象|位置信息| |top_left|对象|左上角位置信息| |right_bottom|对象|右下角位置信息| |x|int|对应点的横坐标(像素)| |y|int|对应点的纵坐标(像素)| 失败: { "code": "10106", "desc": "invalid parameter|invalid X-Appid", "data": "", "sid": "wcr0000bb3f@ch3d5c059d83b3477200" } 成功 > 含位置信息 { "code": "0", "desc": "success", "data": { "block": [ { "location": { "top_left": { "x": 0, "y": 0 }, "right_bottom": { "x": 10, "y": 10 } }, "type": "text", "line": [ { "confidence": 0.89, "location": { "top_left": { "x": 0, "y": 0 }, "right_bottom": { "x": 10, "y": 10 } }, "word": [ { "location": { "top_left": { "x": 0, "y": 0 }, "right_bottom": { "x": 10, "y": 10 } }, "content": "hello" } ] } ] } ] }, "sid": "wcr0000bb3f@ch3d5c059d83b3477200" } > 不含位置信息 { "code": "0", "desc": "success", "data": { "block": [ { "type": "text", "line": [ { "confidence": 0.89, "word": [ { "content": "hello" } ] } ] } ] }, "sid": "wcr0000bb3f@ch3d5c059d83b3477200" }