运用先进的图像处理技术,对图片进行智能分割,可将图片中的主要实体均分割出来
名称 | 内容 |
---|---|
图片要求 | 1.图片格式:JPG、JPEG、PNG、BMP等常见格式,建议使用JPG格式。 |
return_format | 返回图 | 灰阶图像转RGB图像 |
---|---|---|
0 |
| |
1 |
| |
2 |
| |
3 |
| |
4 | 最大实体图层前景图 + 最大实体图层 |
名称 | 内容 |
---|---|
接口地址 | |
请求方式 | POST |
Content-Type | application/json |
完整公共参数列表见 公共参数
本服务Region为cn-north-1; Service为cv
拼接到url后的参数,示例:https://visual.volcengineapi.com?Action=CVProcess&Version=2022-08-31
参数 | 可选/必选 | 类型 | 说明 |
---|---|---|---|
Action | 必选 | String | 接口名,取值:EntitySegment |
Version | 必选 | String | 版本号,取值:2022-08-31 |
业务请求参数,放到request.body中,MIME-Type为application/json
参数 | 可选/必选 | 类型 | 说明 |
---|---|---|---|
req_key | 必选 | string | 取固定值: entity_seg |
binary_data_base64 | 必选(二选一,优先生效) | array of string | 输入图片base64数组,仅支持一张图 |
image_urls | 必选(二选一) | array of string | 图片文件URL数组,仅支持一张图 |
|
|
|
|
max_entity | 可选 | int | 模型输出最大的实体数量,取值范围(1~100) |
return_format | 可选 | int | 0: 图层的index_map(索引图) |
refine_mask | 可选 | int | 0:不对边缘增强 |
请参考通用返回字段及错误码
重点关注data 字段,其他字段为公共返回
字段 | 类型 | 说明 | 备注 |
---|---|---|---|
binary_data_base64 | array of string | 返回智能分割图片的Base64编码 | |
image_urls | array of string | 图片url数组 |
{ "code": 10000, "data": { "algorithm_base_resp": { "status_code": 0, "status_message": "Success" }, "binary_data_base64": [], "entity_num": [ 2 ], "image_urls": [ "https://" ], "ori_height": [ 400 ], "ori_width": [ 332 ], "seg_score": [ 0.999841570854187, 0.999782383441925 ] }, "message": "Success", "request_id": "202407171624042AD8B3F5ED888BAA6FC5", "status": 10000, "time_elapsed": "1.49013826s" }
(1)通用错误码
请参考通用返回字段及错误码
(2)业务错误码
HttpCode | 错误码 | 错误消息 | 描述 |
---|---|---|---|
200 | 10000 | 无 | 请求成功 |
400 | 61003 | Invalid Input Image: Image do not contain segment object | 图片中不包含可用于分割的物体 |
请参考SDK使用说明