Install
openclaw skills install photo-to-3dOne-click photo to 3D model pipeline. Upload any photo, AI generates a clean isometric view via Gemini (Nano Banana), then converts it to a production-ready 3D model (.glb) via Tripo3D API. Use when user wants to convert photos/images to 3D models, generate 3D assets from pictures, or create 3D content from 2D images. Triggers on "photo to 3D", "image to 3D", "convert to 3D model", "generate 3D", "照片转3D", "图片生成3D模型", "一键3D建模".
openclaw skills install photo-to-3dTwo-step pipeline that converts any photo into a 3D model:
GEMINI_API_KEY — Get from https://aistudio.google.com/apikeyTRIPO_API_KEY — Get from https://platform.tripo3d.ai/# Full pipeline: photo → isometric view → 3D model
python3 scripts/photo_to_3d.py <image_path>
# Custom prompt for Gemini preprocessing
python3 scripts/photo_to_3d.py <image_path> --prompt "your custom prompt"
# Skip preprocessing (image is already a clean isometric view)
python3 scripts/photo_to_3d.py <image_path> --skip-preprocess
# Custom output directory
python3 scripts/photo_to_3d.py <image_path> --output-dir ./my_output
output/{name}_isometric.png — Gemini-generated isometric viewoutput/{name}_model.glb — Final 3D model fileThe built-in prompt generates a 45° isometric "3D-printed model" style render with PBR materials on a pure white background. Override with --prompt for custom styles (e.g., game assets, architectural models, product renders).
usdzconvert