Image List To Image Batch(imageListToImageBatch)
Image List To Image Batch node from ComfyUI-Easy-Use.
image List To Image Batch
Description
The Image List To Image Batch node converts a list of IMAGE tensors into a single batched IMAGE tensor. It is useful when you have multiple images stored as separate items in a list and need to combine them into one batch so downstream nodes can process them as a single unit.
Inputs
images
- Type:
IMAGE - Required: Yes
A list of images to combine into a batch. All images in the list must be compatible with each other: they should share the same height, width, and number of channels so they can be stacked along the batch dimension.
Outputs
IMAGE
The output is a single IMAGE tensor containing all input images combined into one batch. The batch size of the output equals the number of input images. This batched image can then be passed to other nodes that expect IMAGE input, such as samplers, previews, or VAE processing nodes.
Usage Notes
- This node is designed for use in workflows where images are collected as a list and need to be flattened into a batch.
- All images in the list must have the same spatial dimensions and channel count; inconsistent shapes will cause the operation to fail.
- If the input already contains a single batched image and you need to split it, use a different node designed for splitting batches — this node is specifically for combining a list of images into a batch.
- The node belongs to the
EasyUse/Imagecategory in ComfyUI-Easy-Use.
Comments
Sign in with GitHub to join the discussion.