EasyUse/Imagegenerated
Image Batch To Image List(imageBatchToImageList)
Image Batch To Image List node from ComfyUI-Easy-Use.
image Batch To Image List
image
IMAGE
Easy Use
Description
The Image Batch To Image List node splits a batched image tensor into a list of individual image tensors. It is useful when downstream nodes or logic expect separate images rather than a single batched IMAGE, such as per-image processing, iteration, or selective reuse of specific frames.
Inputs
- image (
IMAGE, required): A batched image tensor with shape(B, H, W, C), whereBis the number of images in the batch,HandWare the height and width, andCis the number of channels (typically 3 for RGB or 1 for grayscale).
Outputs
- IMAGE: A list of individual image tensors. Each item is a single-image tensor with a batch dimension of 1, shaped
(1, H, W, C). The output type is reported asIMAGE, but the node returns a list of such tensors — one for each image in the input batch.
Usage Notes
This node is part of the EasyUse image utilities. It is especially helpful when you need to apply different operations to each image in a batch, or when connecting to nodes that do not natively accept batched inputs. If the input already has a batch size of 1, the output list will contain exactly one image tensor.
Comments
Sign in with GitHub to join the discussion.