image_to_3d_model
Convert images into 3D models in Blender by extracting dominant colors and applying them as materials to shapes like cubes, spheres, or cylinders.
Instructions
Create a 3D model in Blender with colors extracted from an image.
This tool analyzes the provided image to extract dominant colors, then creates
a 3D model in Blender with materials matching those colors.
Args:
image_data: Base64-encoded image data (can include data URL prefix)
model_type: Shape type - "cube", "sphere", or "cylinder" (default: "cube")
model_name: Name for the created 3D object (default: "ImageModel")
Returns:
JSON string with status, extracted colors, and model information.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| image_data | Yes | ||
| model_type | No | cube | |
| model_name | No | ImageModel |