ComfyUI Nodes
Playbook Depth
Retrieves the Depth Render Pass from Playbook3D API, supporting both single-frame and sequence modes.
Playbook Depth Pass Node
The Playbook Depth Pass node retrieves a single Depth Render Pass frame from Playbook3D. It provides depth information for rendering and post-processing.
🛠️ Node Configuration
Inputs
Name | Type | Required | Default | Description |
---|---|---|---|---|
api_key | STRING | ✅ | N/A | API key for authentication. |
run_id | STRING | ❌ | N/A | Optional identifier for a specific run. |
default_value | IMAGE | ❌ | N/A | Default image if no valid render is found. |
Outputs
Name | Type | Description |
---|---|---|
Image | IMAGE | The retrieved Depth Render Pass image. |
⚙️ Functionality
- Uses
api_key
to authenticate with Playbook3D. - If
run_id
is provided, fetches the Depth Pass for that specific render. - If no valid render is found, returns the default image.
- Converts the retrieved image to an RGB tensor format.
Playbook Depth Pass Sequence Node
The Playbook Depth Pass Sequence node retrieves a sequence of Depth Render Pass frames from Playbook3D. It fetches a ZIP file containing multiple depth images and processes them as a batch.
🛠️ Node Configuration
Inputs
Name | Type | Required | Default | Description |
---|---|---|---|---|
api_key | STRING | ✅ | N/A | API key for authentication. |
run_id | STRING | ❌ | N/A | Optional identifier for a specific run. |
Outputs
Name | Type | Description |
---|---|---|
Images | IMAGE | A batch tensor containing extracted Depth Pass frames. |
⚙️ Functionality
- Uses
api_key
to authenticate with Playbook3D. - Retrieves a ZIP file containing multiple Depth Pass frames.
- Extracts and converts the images into a batch tensor format.
- Processes and normalizes the images before returning them.