ComfyUI Node
CV Split Tuple
The reverse of 'CV Tuple': takes one composite value and emits its components separately, so a size or a point can drive plain INT/FLOAT inputs (a Math Expression, a crop, a loop bound). Components past the value's own length come out as 0.
CV Split Tuple
- tuple
- a
- b
- c
- d
- count
◄dtypeint►
Categoryimage/CV/low-level
Inputs (2)
| Name | Type | Default | Description |
|---|---|---|---|
| tuple | CV_TUPLE,BOUNDING_BOX | 0,0,0,0 | Composite value to split - wire it from 'CV Tuple', from any cv2 node's point / size output, or from a BOUNDING_BOX (a cv2 Rect: x, y, width, height). |
| dtype | COMBO | int | Output type: 'int' truncates (pixel indices), 'float' preserves fractions (subpixel). |
Outputs (5)
| Name | Type | Description |
|---|---|---|
| a | * | First component. |
| b | * | Second component. |
| c | * | Third component (0 if the value has only two). |
| d | * | Fourth component (0 if the value is shorter). |
| count | INT | How many components the value actually carried. |