You need to enable JavaScript to run this app.
导航
智能分割
最近更新时间:2024.11.01 15:16:00首次发布时间:2024.07.17 21:57:33

接口简介

运用先进的图像处理技术,对图片进行智能分割,可将图片中的主要实体均分割出来

限制条件

名称

内容

图片要求

1.图片格式:JPG、JPEG、PNG、BMP等常见格式,建议使用JPG格式。
2.最小 128 x 128 像素,最大 4096 x 4096 像素;
3. base64格式下单张图片最大4.7Mb。

Demo展示

return_format

返回图

灰阶图像转RGB图像

0

Image
图层的index_map

Image

1

Image
所有实体图层 (最多max_entity个)

2

Image
原图1张 + 图层index_map

3

Image
原图1张 + 所有实体图层 (最多max_entity个)

4

最大实体图层前景图 + 最大实体图层

请求说明

名称

内容

接口地址

https://visual.volcengineapi.com

请求方式

POST

Content-Type

application/json

Header参数

完整公共参数列表见 公共参数
本服务Region为cn-north-1; Service为cv

Query参数

拼接到url后的参数,示例:https://visual.volcengineapi.com?Action=CVProcess&Version=2022-08-31

参数

可选/必选

类型

说明

Action

必选

String

接口名,取值:EntitySegment

Version

必选

String

版本号,取值:2022-08-31

Body参数

业务请求参数,放到request.body中,MIME-Type为application/json

参数

可选/必选

类型

说明

req_key

必选

string

取固定值: entity_seg

binary_data_base64

必选(二选一,优先生效)

array of string

输入图片base64数组,仅支持一张图

image_urls

必选(二选一)

array of string

图片文件URL数组,仅支持一张图

return_url

可选

bool

输出是否返回图片链接,暂不支持

max_entity

可选

int

模型输出最大的实体数量,取值范围(1~100)
默认值:20

return_format

可选

int

0: 图层的index_map(索引图)
1: 所有实体图层 (最多max_entity个)
2: 原图1张 + 图层index_map
3: 原图1张 + 所有实体图层 (最多max_entity个)
4: 最大实体图层前景图 + 最大实体图层
默认值:0
图层索引图index_map: 取值范围0~max_entity, 每个值代表一个图层的id
实体图层:取值范围0~255,代表属于当前图层的置信度

refine_mask

可选

int

0:不对边缘增强
1:对边缘增强
默认值:0
仅对分开图层图生效, index_map会丢失matting细节

输出说明

通用输出参数

请参考通用返回字段及错误码

业务输出参数

重点关注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使用说明

请参考SDK使用说明