ComfyUI Node
CV Unstack Batch
Splits a batched NPARRAY along the first axis into a list of individual arrays. E.g. (N, H, W, C) -> N x (H, W, C). Use to process each frame of a DNN output batch through per-frame nodes (Cast Array, CV Array -> Image, etc.).
CV Unstack Batch
- nparray
- frame
Categoryimage/CV/low-level
Inputs (1)
| Name | Type | Default | Description |
|---|---|---|---|
| nparray | NPARRAY | Batched array, e.g. (N, H, W, C) from DNN Images From Blob (Batch) or any N-D array with N>0 in axis 0. |
Outputs (1)
| Name | Type | Description |
|---|---|---|
| frame | NPARRAY | List of (H, W, C) arrays, one per batch element. |