Design
深度图生成器
从图像生成深度图,使用亮度、饱和度和边缘分析。生成灰度深度图,较亮像素表示较近物体,较暗像素表示较远物体。
file· 文件结果
cURL
# 1) Upload each file first → returns { filePath }
curl -X POST 'https://api.elysiatools.com/upload/image-depth-map' \
-F 'file=@/path/to/imageFile.ext'
# 2) Call the tool with the returned filePath values
curl -X POST 'https://api.elysiatools.com/zh/api/tools/image-depth-map' \
-F 'imageFile=/path/to/file.ext' \
-F 'method=combined' \
-F 'invert=false' \
-F 'edgeEnhancement=true' \
-F 'blur=1' \
-F 'brightnessWeight=0.5' \
-F 'saturationWeight=0.3' \
-F 'edgeWeight=0.2' \
-F 'format=png' \
-F 'quality=90'
API 参考
以 JSON 形式 POST 提交输入参数。文件类型参数需先单独上传。
请求端点
HTTP
POST https://api.elysiatools.com/zh/api/tools/image-depth-map
请求参数
| 参数名 | 类型 | 必填 | 说明 |
|---|
| imageFile | file需先上传 | 是 | 上传图片以生成深度图 |
| method | select | 否 | 用于计算深度值的算法 |
| invert | checkbox | 否 | 反转深度图(暗=近,亮=远) |
| edgeEnhancement | checkbox | 否 | 应用边缘检测以增强深度图中的物体边界 |
| blur | range | 否 | 应用高斯模糊来平滑深度图 |
|
MCP 集成
将此工具加入你的 Model Context Protocol 服务,让 AI 智能体可以列出并调用它。
服务配置
将以下内容加入你的 MCP 客户端配置:
mcp.json
{
"mcpServers": {
"elysiatools-image-depth-map": {
"name": "image-depth-map",
"description": "从图像生成深度图,使用亮度、饱和度和边缘分析。生成灰度深度图,较亮像素表示较近物体,较暗像素表示较远物体。",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=image-depth-map",
"command": "",
"args": [],
"env": {},
"isActive": true,
"type": "sse"
}
}
}
列出可用工具
连接到 SSE 端点后,列出已开放的工具:
tools/list
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/list"
}
调用此工具
通过工具 id 调用,参数由其参数表构建:
tools/call
{
"jsonrpc": "2.0",
"id": 2,
"method": "tools/call",
"params": {
"name": "image-depth-map",
"arguments": {
"imageFile": "https://example.com/file.ext",
"method": "combined",
"invert": false,
"edgeEnhancement": true,
"blur": 1,
"brightnessWeight": 0.5,
"saturationWeight": 0.3,
"edgeWeight": 0.2,
"format": "png",
"quality": 90
}
}
}
可用逗号分隔的 toolId 在一个会话中串联多个工具,例如 /mcp/sse?toolId=png-to-webp,jpg-to-webp,gif-to-webp(最多 20 个)。 | saturationWeight | range | 否 | 颜色饱和度对深度计算的影响程度(仅组合模式) |
| edgeWeight | range | 否 | 边缘对深度计算的影响程度(仅组合模式) |
| quality | number | 否 | 有损格式(JPEG、WebP)的质量设置 |
文件类型参数需先通过 POST /upload/image-depth-map 上传,再将返回的 filePath 传入对应的文件字段。
响应格式
文件结果
JSON
{
"filePath": "/public/processing/randomid.ext",
"fileName": "output.ext",
"contentType": "application/octet-stream",
"size": 1024,
"metadata": {
"key": "value"
},
"error": "Error message (optional)",
"message": "Notification message (optional)"
}
文件参数仅支持公开的文件链接 URL(https://…)。不支持本地路径、data: URI 和 Base64 字符串。
深度图生成器 —— API 与 MCP | Elysia Tools