aiPicMatting
Remove backgrounds from images stored in Tencent Cloud COS using AI-based matting, enabling precise isolation of subjects without coding.
Instructions
图片处理-抠图
Input Schema
Name | Required | Description | Default |
---|---|---|---|
height | No | 高度 | |
objectKey | Yes | 图片在存储桶里的路径 | |
width | No | 宽度 |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"height": {
"description": "高度",
"type": "string"
},
"objectKey": {
"description": "图片在存储桶里的路径",
"type": "string"
},
"width": {
"description": "宽度",
"type": "string"
}
},
"required": [
"objectKey"
],
"type": "object"
}