EasyUse/Imagegenerated

imageSplitList

imageSplitList takes a single batched IMAGE input and splits it into three separate IMAGE outputs.

image Split List

images
images
images
images
Easy Use

imageSplitList takes a single batched IMAGE input and splits it into three separate IMAGE outputs. It is designed for dividing a list/batch of images into smaller groups, rather than for cropping or resizing individual images.

Description

This node belongs to the EasyUse/Image category. It accepts one images input and returns three IMAGE outputs that represent portions of the original image list. The most common use is to split a large batch into three smaller batches for separate processing branches.

Inputs

  • images (IMAGE, required):
    A ComfyUI image batch/tensor, shaped as (B, H, W, C). The node interprets the batch/first dimension as the list of images to split.

Outputs

The node returns three IMAGE tensors:

  1. First output (IMAGE): the first portion of the split image list.
  2. Second output (IMAGE): the middle portion of the split image list.
  3. Third output (IMAGE): the final portion of the split image list.

The original order of images is preserved within each output segment.

Usage Notes

  • Use this node when you need to divide a large image batch into three smaller groups before passing them to different models, branches, or post-processing steps.
  • If the number of input images is evenly divisible by 3, each output receives exactly one third of the input.
  • For non-divisible input counts, the images are split as evenly as possible across the three outputs.
  • There are no extra widgets, modes, or optional configuration inputs; all behavior is determined by the images input alone.

Comments

Sign in with GitHub to join the discussion.

Loading comments…