apply_gaussian_blur
Apply a Gaussian blur effect to an image using a specified radius to control the blur intensity. Ideal for reducing noise, enhancing aesthetics, or focusing attention on specific elements.
Instructions
应用高斯模糊滤镜
Input Schema
Name | Required | Description | Default |
---|---|---|---|
image_source | Yes | 图片源,可以是文件路径或base64编码的图片数据 | |
radius | Yes | 高斯模糊半径,值越大模糊效果越强 |
Input Schema (JSON Schema)
{
"properties": {
"image_source": {
"description": "图片源,可以是文件路径或base64编码的图片数据",
"title": "Image Source",
"type": "string"
},
"radius": {
"description": "高斯模糊半径,值越大模糊效果越强",
"minimum": 0.1,
"title": "Radius",
"type": "number"
}
},
"required": [
"image_source",
"radius"
],
"title": "apply_gaussian_blurArguments",
"type": "object"
}