This page was machine-translated. Spotted a mistake?Help improve it.
Skip to content

Blur Background

在保持主体清晰的同时模糊图像背景。AI 模型会隔离主体,对原始背景应用模糊,然后将清晰的主体合成到上方。

API Endpoint

POST /api/v1/tools/image/blur-background

接受包含图像文件和一个 JSON settings 字段的 multipart 表单数据。

Parameters

ParameterTypeRequiredDefaultDescription
intensityinteger50模糊强度(1-100)
featherinteger0边缘羽化半径(0-20)
formatstring"png"输出格式:pngwebp

Example Request

bash
curl -X POST http://localhost:1349/api/v1/tools/image/blur-background \
  -H "Authorization: Bearer si_your-api-key" \
  -F "[email protected]" \
  -F 'settings={"intensity": 75, "feather": 3}'

Example Response

json
{
  "jobId": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
  "async": true
}

通过 GET /api/v1/jobs/{jobId}/progress 处的 SSE 跟踪进度。任务完成后,SSE 流会发出一个带下载 URL 的 completed 事件。

Notes

  • 这是一个 AI 驱动的工具,返回 202 Accepted 并异步处理。连接到 SSE 端点以接收进度更新和最终结果。
  • 需要安装 background-removal 功能包。如果该包不可用,则返回 501
  • 更高的强度值会产生更强的模糊效果。超过 80 的值会营造出明显的类似焦外虚化的分离感。
  • HEIC、RAW、PSD 和 SVG 输入在处理前会自动解码。