
The 'Rodin: Image to Model' workflow is an innovative approach to generating detailed 3D models from single photographs using the Rodin AI model. This workflow leverages a series of specialized nodes, including Rodin3D_Regular, Rodin3D_Detail, Rodin3D_Smooth, and Rodin3D_Sketch, to process and refine images into high-quality 3D models. By starting with a LoadImage node, users can input their chosen photo, which is then processed through the Rodin nodes to enhance details, smooth surfaces, and sketch outlines, ensuring a comprehensive 3D representation. The Preview3D node allows users to visualize the model in real-time, while the BatchImagesNode supports processing multiple images for a more robust model creation.
Technically, this workflow is designed to optimize the image-to-3D conversion process by using advanced AI techniques. It is particularly useful for users who need to create 3D models for applications in gaming, virtual reality, or product design, where realistic and detailed models are crucial. The workflow's ability to handle images from multiple angles and those with solid color backgrounds enhances the accuracy and quality of the resulting 3D models. This makes it a powerful tool for artists, designers, and developers looking to streamline their 3D model creation process.
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.
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 this workflow (TypeScript)
import { Comfy } from "@comfyorg/sdk";
const client = new Comfy({ apiKey: "comfyui-..." });
const wf = await client.workflows.fromFile("workflow_api.json");
const job = await client.run(wf);
await job.getOutputs("<output-node-id>")[0].toFile("output.png");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.
FAQ













