apply_contour
Detect and apply contour effects to an image using the apply_contour tool. Enhance edges and extract outlines by processing image data, supporting input as a file path or base64-encoded string. Ideal for edge detection tasks in image processing workflows.
Instructions
应用轮廓滤镜
Input Schema
Name | Required | Description | Default |
---|---|---|---|
image_source | Yes | 图片源,可以是文件路径或base64编码的图片数据 |
Input Schema (JSON Schema)
{
"properties": {
"image_source": {
"description": "图片源,可以是文件路径或base64编码的图片数据",
"title": "Image Source",
"type": "string"
}
},
"required": [
"image_source"
],
"title": "apply_contourArguments",
"type": "object"
}