Tripo: Image to Model
api node/3d/TripoOutput Node
TripoImageToModelNodeExample
JSON Example
{
"class_type": "TripoImageToModelNode",
"inputs": {
"image": [
"node_id",
0
]
}
}This example shows required inputs only. Connection values like ["node_id", 0] should reference actual node IDs from your workflow.
Inputs
| Name | Type | Status | Constraints | Default |
|---|---|---|---|---|
image | IMAGE | required | - | - |
model_version? | COMBO | optional | - | - |
style | COMBO | optional | - | "None" |
texture | BOOLEAN | optional | - | true |
pbr | BOOLEAN | optional | - | true |
model_seed | INT | optional | - | 42 |
orientation | COMBO | optional | - | "default" |
texture_seed | INT | optional | - | 42 |
texture_quality | COMBO | optional | - | "standard" |
texture_alignment | COMBO | optional | - | "original_image" |
face_limit | INT | optional | min: -1, max: 500000 | -1 |
quad | BOOLEAN | optional | - | false |
geometry_quality | COMBO | optional | - | "standard" |
Outputs
| Index | Name | Type | Is List | Connection Reference |
|---|---|---|---|---|
0 | model_file | STRING | No | ["{node_id}", 0] |
1 | model task_id | MODEL_TASK_ID | No | ["{node_id}", 1] |
How to connect to these outputs
To connect another node's input to an output from this node, use the connection reference format:
["node_id", output_index]Where node_id is the ID of this TripoImageToModelNode node in your workflow, and output_index is the index from the table above.
Example
If this node has ID "5" in your workflow:
model_file (STRING):["5", 0]model task_id (MODEL_TASK_ID):["5", 1]
Was this page helpful?