文字识别 OCR
文字识别 OCR
- 最新动态
- 功能总览
- 服务公告
- 产品介绍
- 计费说明
- 快速入门
- 用户指南
- API参考
- SDK参考
- 场景代码示例
- 最佳实践
- 常见问题
- 视频帮助
- 文档下载
- 通用参考
链接复制成功!
返回结果
响应消息头
对应请求消息头,响应同样也有消息头,如“Content-type”。例如表1所示。
响应消息体
响应消息体通常以结构化格式返回,与响应消息头中Content-type对应,传递除响应消息头之外的内容。
对于网络图片识别接口,返回如下消息体。
{ "result": { "words_block_count": 2, "words_block_list": [ { "words": "文字块1", "confidence": 0.9950, "location": [ [13, 476], [91, 332], [125, 351], [48, 494] ] }, { "words": "文字块2", "confidence": 0.9910, "location": [ [13, 476], [91, 332], [125, 351], [48, 494] ] } ], "extracted_data": {} } }
当接口调用出错时,会返回错误码及错误信息说明,错误响应的Body体格式如下所示。
{ "error_code": "AIS.0103", "error_msg": "The image size does not meet the requirements." }
其中,error_code表示错误码,error_msg表示错误描述信息。
父主题: 如何调用API