<aside> πŸ› 

Pick One Image Out of an Image List β€” By Index


Given a list of images (from a batch node, a multi-output model, or any collection-producing tool), grab the single image you want by its 0-based index. Slide to the position, extract, done. Perfect for picking a specific frame from a batch, a specific mask from a segmentation result, a specific variant from an image generator, or any "give me item N from this list" workflow.

</aside>


What it does

List Extract takes an image list as input and returns a single image at the position you specify. Indexing is 0-based β€” so 0 is the first image, 1 is the second, and so on. Use the slider (or type the value) to pick which one. The rest of the list is discarded; only the selected image passes through to downstream nodes.

Problem it solves

Input/Output

<aside>



How to Use

  1. Connect an image-list source β†’ Wire an upstream node that produces a list of images (segmentation model with multiple masks, batch generator, etc.) into List Extract
  2. Set the index β†’ Drag the slider (or type a value) to select which image you want. Remember: 0 = first image.
  3. Run Flow β†’ The selected image is emitted; downstream nodes receive that single image