一键多角度场景

“一键多视角生成”工作流旨在简化从单张图片生成场景多角度视图的流程。通过Qwen-Image-Edit模型,该工作流高效分析输入图片,生成多种视角,丰富视觉叙事,适用于建筑、游戏设计和虚拟现实等需要多角度理解场景的领域。

技术上,流程以LoadImage节点导入用户场景图片,Qwen-Image-Edit模型(节点ID:0f47377a-2933-4dba-9791-a9c54b078226)处理图片生成新视角,结果通过SaveImage节点保存。该流程让用户以最少操作实现复杂图片编辑,是专业人士和爱好者的实用工具。

API

Use this workflow from code

Every Comfy workflow is a JSON graph. The payload below is this workflow, exactly as ComfyUI runs it — fetch it from the URL, keep it in version control, or load it in ComfyUI and run it node by node.

templates-1_click_multiple_scene_angles-v1.0.json
Fetching workflow JSON…

Run it from TypeScript or Python with the Comfy SDK. The same code targets Comfy Cloud or a ComfyUI you host yourself — only the base URL changes.

// Install (beta)
npm i @comfyorg/sdk

// Run "一键多角度场景" (TypeScript)
import { Comfy } from "@comfyorg/sdk";

const client = new Comfy({ apiKey: "comfyui-..." });

// This workflow, exported in API format (see note below)
const wf = await client.workflows.fromFile("templates-1_click_multiple_scene_angles-v1.0_api.json");

const asset = client.assets.fromFile("input.png");
wf.setInput("25", "image", asset); // LoadImage

const job = await client.run(wf);
await job.getOutputs("43")[0].toFile("output.png"); // SaveImage

The SDK takes a workflow in API format: open this workflow in ComfyUI and use File → Export Workflow (API).

Comfy Cloud API access requires a plan with an API key.

常见问题

常见问题

查看所有工作流
Character
Cinematic
Image to Video
Lip Sync
Multiple Angles
Portrait
Style Reference
Style Transfer
Text to Video
Video Generation
Video
Showing 30 of 30 templates