Visit ComfyUI Online for ready-to-use ComfyUI environment
Automates loading images and masks for AI art projects based on naming convention, streamlining workflow for artists.
The ProjectorzControlnetInput
node is designed to facilitate the loading of images and their corresponding masks for use in AI art projects. This node is particularly useful for artists who need to manage multiple images and masks efficiently, as it automates the process of fetching these assets based on a specified naming convention. By leveraging this node, you can streamline your workflow, ensuring that the correct images and masks are loaded without manual intervention. This is especially beneficial in complex projects where consistency and accuracy in image handling are crucial.
The index
parameter is an integer that specifies which image and mask to load based on their naming convention. For example, if the index
is set to 0, the node will look for files named with a suffix of 0.png
and 0_mask.png
. This parameter allows you to dynamically select different images and masks without changing the node configuration. The default value is 0.
The name_prefix
parameter is a string that defines the prefix for the image and mask filenames. This prefix is combined with the index
to form the complete filename. For instance, if the name_prefix
is set to controlnet_
and the index
is 0, the node will look for controlnet_0.png
and controlnet_0_mask.png
. This parameter helps in organizing and managing your files systematically. The default value is set to a predefined format specified by apis.FILENAME_FORMAT_CONTROLNET_PREFIX_DEFAULT
.
The IMAGE
output parameter provides the loaded image based on the specified index
and name_prefix
. This image can be used in subsequent nodes for further processing or as an input to other parts of your AI art project. The image is loaded as a tensor, making it compatible with various AI frameworks and tools.
The MASK
output parameter provides the corresponding mask for the loaded image. Masks are essential for tasks that require segmentation or specific areas of the image to be highlighted or processed differently. Like the image, the mask is also loaded as a tensor, ensuring seamless integration with other nodes and processes.
name_prefix
and index
parameters to avoid loading errors.index
parameter to quickly switch between different sets of images and masks without modifying the node configuration.name_prefix
and index
parameters.name_prefix
and index
values to make sure they match the filenames.© Copyright 2024 RunComfy. All Rights Reserved.