EasyUse/Imagegenerated
imageSplitGrid
The imageSplitGrid node splits an input image or batch of images into a row × column grid of tiles and returns the tiles as a single IMAGE batch.
image Split Grid
images
images
row
1
column
1
Easy Use
Description
The imageSplitGrid node splits an input image or batch of images into a row × column grid of tiles and returns the tiles as a single IMAGE batch. Each input image is processed independently.
Inputs
- images (IMAGE): A single image or a batch of images to be split. Each image in the batch is split separately.
- row (INT, default=1, min=1, max=10): Number of rows in the grid. This controls how many segments the image height is divided into.
- column (INT, default=1, min=1, max=10): Number of columns in the grid. This controls how many segments the image width is divided into.
Outputs
- IMAGE: A batched IMAGE output containing the grid tiles. With both
rowandcolumnset to 1, the input image(s) are returned unchanged. Otherwise, each input image producesrow × columnoutput tiles.
Usage Notes
- The default of
row=1andcolumn=1makes the node effectively a pass-through. - The maximum grid size is 10×10, so an input image can be split into up to 100 tiles.
- This is useful for region-based processing, tiled workflows, or breaking a large reference image into manageable pieces for comparison or analysis.
Comments
Sign in with GitHub to join the discussion.