图像混合器
POST
https://stablediffusionapi.com/api/v3/img_mixer该接口通过混合多个图像来生成图像。
与图像一起,您可以通过传递提示和否定提示来添加对所需结果的描述。
POST
向https://stablediffusionapi.com/api/v3/img_mixer 接口发出请求,并将所需参数作为请求正文传递到端点。
请求参数
Body 参数application/json
key
string
必需
您用于请求授权的 API Key
seed
integer
必需
种子用于重现结果,相同的种子将再次为您提供相同的图像。为随机数传递null 。
init_image
string
必需
要混合的图像的逗号分隔图像 URL
prompt
string
必需
文本提示,包含您想要在图像中生成的内容的描述
negative_prompt
string
必需
图像中您不想要的项目
init_image_weights
string
必需
以逗号分隔传递的图像的权重
width
integer
必需
最大高度: 宽度: 1024x1024
height
integer
必需
最大高度: 宽度: 1024x1024
guidance_scale
integer
必需
无分类器指导的量表(最小值:1;最大值:20)
steps
integer
必需
去噪步骤数(最小:1;最大:50)
samples
integer
必需
作为响应返回的图像数量。最大值为 4。
示例
{
"key": "",
"seed": 12345,
"init_image": "https://img.freepik.com/premium-photo/red-roses-rose-petals-white-backgroundvalentines-day-concept_167862-5720.jpg,https://huggingface.co/datasets/diffusers/test-arrays/resolve/main/stable_diffusion_inpaint/boy.png",
"prompt": "rose man",
"negative_prompt": "A polluted city",
"init_image_weights": "0.5,0.7",
"width": 800,
"height": 600,
"guidance_scale": 10,
"steps": 100,
"samples": 1
}
示例代码
返回响应
成功(200)
HTTP 状态码: 200
内容格式: JSONapplication/json
数据结构
status
string
必需
generationTime
number
必需
id
integer
必需
output
array[string]
必需
meta
object
必需
H
integer
必需
W
integer
必需
file_prefix
string
必需
guidance_scale
integer
必需
init_image
string
必需
init_image_weights
string
必需
n_samples
integer
必需
negative_prompt
string
必需
outdir
string
必需
prompt
string
必需
seed
integer
必需
steps
integer
必需
示例
{
"status": "success",
"generationTime": 19.260561227798462,
"id": 349,
"output": [
"https://cdn2.stablediffusionapi.com/generations/8aa6cb76-0c62-4ebc-a29a-3a3e3727bc88-0.png"
],
"meta": {
"H": 600,
"W": 800,
"file_prefix": "8aa6cb76-0c62-4ebc-a29a-3a3e3727bc88",
"guidance_scale": 10,
"init_image": "https://img.freepik.com/premium-photo/red-roses-rose-petals-white-backgroundvalentines-day-concept_167862-5720.jpg,https://huggingface.co/datasets/diffusers/test-arrays/resolve/main/stable_diffusion_inpaint/boy.png",
"init_image_weights": "0.5,0.7",
"n_samples": 1,
"negative_prompt": "A polluted city",
"outdir": "out",
"prompt": "rose man",
"seed": 12345,
"steps": 100
}
}
最后修改时间: 1 年前