本接口支持通过指定服务 ID 以及图片识别场景,获取该场景下图片的识别结果等信息。
以下请求参数列表仅列出了该接口的部分公共参数,完整公共参数列表见公共参数。
参数 | 类型 | 是否必选 | 示例值 | 描述 |
---|---|---|---|---|
Action | String | 是 | GetImageOCRV2 | 接口名称。当前 API 的名称为 GetImageOCRV2 。 |
Version | String | 是 | 2018-08-01 | 接口版本。当前 API 的版本为 2018-08-01。 |
ServiceId | String | 是 |
| 服务 ID。 |
参数 | 类型 | 是否必选 | 示例值 | 描述 |
---|---|---|---|---|
ImageUrl | String | 否 | http://test.com/example.png | 图片 URL,仅当StoreUri 为空时取值有效,两者都为空时报错。 |
Scene | String | 是 |
| 图片 OCR 识别场景,取值如下所示。
注意 当前仅支持识别图片中简体中文和简体英文这两种文本信息。 |
StoreUri | String | 是 | test.com/example.png | 图片文件的存储 URI。 |
参数 | 类型 | 示例值 | 描述 |
---|---|---|---|
Scene | String | general | 图片 OCR 识别场景。 |
GeneralResult | Array of GeneralResult | - | 通用场景 |
LicenseResult | Map<String,LicenseResult> | - | 营业执照场景 |
参数 | 类型 | 示例值 | 描述 |
---|---|---|---|
Content | String | 叁佰万元整 | 图片 OCR 识别的文本内容。 |
Location | []int | [x1,y1,x2,y2] | 文本块的坐标位置。 |
参数 | 类型 | 示例值 | 描述 |
---|---|---|---|
Content | String | 花朵 | 图片 OCR 识别的文本内容。 |
Confidence | String | 0.99161786 | 文本置信度。识别出的内容可信程度,值越大内容越准确。 |
Location | [][]int | [[x1,y1],[x2,y2]] | 文本块的坐标位置。 |
POST https://imagex.volcengineapi.com/?Action=GetImageOCRV2&Version=2018-08-01&ServiceId=fc51f8f9* { "StoreUri": "***", "Scene": "LicenseResult", "ImageUrl": "***" }
{ "ResponseMetadata": { "RequestId": "201806041104200100100232280022D30", "Action": "GetImageOCRV2", "Version": "2018-08-01", "Service": "imagex", "Region": "cn-north-1" }, "Result": { "Scene": "license", "GeneralResult":{}, "LicenseResult":{ "USCC": { "content": "9122******2173", "location": [ 184, 456, 273, 23 ] }, "address": { "content": "XX市XX区XX路XX号XX室", "location": [ 1219, 774, 361, 92 ] }, "capital": { "content": "叁佰万元整", "location": [ 1060, 624, 319, 29 ] }, "corporation": { "content": "XX", "location": [ 184, 718, 249, 29 ] }, "expiry_date": { "content": "XXXX年XX月XX日至XXXX年XX月XX日", "location": [ 1060, 722, 591, 31 ] }, "name": { "content": "XX省XX有限公司", "location": [ 343, 623, 351, 26 ] }, "register_date": { "content": "XXXX年XX月XX日", "location": [ 1059, 671, 396, 34 ] }, "scope": { "content": "教育科技领域内的技术研发****", "location": [ 182, 767, 697, 341 ] }, "type": { "content": "有限责任公司(自然人投资或控股)", "location": [ 341, 671, 394, 29 ] } } } }
以上示例字段说明如下表所示:
字段 | 描述 |
---|---|
USCC | 统一社会信用代码 |
name | 公司名称 |
type | 公司类型 |
address | 公司地址 |
corporation | 公司法人 |
capital | 注册资本 |
register_date | 成立日期 |
expiry_date | 公司营业期限日期 |
scope | 经营范围 |
为了方便您快速开发,veImageX 提供了配套的服务端 SDK,同时支持多种编程语言。建议您使用服务端 SDK 来调用 API,参考文档如下所示: