bmad4ever / comfyui_quilting

image and latent quilting nodes for comfyui
MIT License
9 stars 3 forks source link
comfyui-nodes image-quilting

comfyui_quilting

Image and latent quilting nodes for ComfyUI.

This project utilizes the texture synthesis technique from the paper: Alexei A. Efros and William T. Freeman. 2001. Image quilting for texture synthesis and transfer.

Currently, a texture transfer node has not been implemented. However, other potential applications and complements related to the algorithm have been explored:

For better context, see the examples below and the remaining workflows in the worklows folder

- - Example Workflows - - ### Image quilting example workflow ![image quilting workflow](workflows/image_quilting.png) ### Vertically seamless texture example workflow ![latent quilting workflow](workflows/seamless%20image%20SP%20plus%20seamless%20sampling.png)

How to use

Making sense of the nodes' inputs

_________________________ ### block_size **The size of the blocks is given in pixels for images; for latent images, use the number of pixels divided by 8 instead.** Block size impacts both the synthesis time and the seamlessness of the generated texture. Larger blocks can speed up the generation process because fewer blocks are required to cover the same area, and the patch search area is reduced. However, achieving seamless generation involves careful consideration of block size. If the block size is too small, it may struggle to adequately cover different patterns, leading to issues with texture continuity. Conversely, if the block size is too large, there may not be enough addressable area to properly cover an entire pattern or its variations, potentially resulting in noticeable seams or repetitions. **To address this challenge, all image nodes allow for the block size to be defined automatically by setting block_size to values within the range of [-1, 2]. The meanings of these values are as follows:** * -1: Uses the same logic as the **Guess Nice Block Size** node with the option **simple_and_fast** enabled, which uses a quick estimation. * 0: Similar to the previous option, but **simple_and_fast** is disabled. * 1: Sets block size to 1/3 of the texture shortest edge length. A likely decent block size without needing to readjust the value when changing texture and not prone to algorithmic swings. * 2: Sets block size to 3/4 of the texture shortest edge length. If you need a quick generation or handle a considerably large portion of the texture when running a seamless node but don't want to set the block size manually. When a batch of images is provided, a separate block size guess is computed for each image individually. Note that the guessed block sizes are recalculated each time and are not stored for future executions. If caching is important, you can use the **Guess Nice Block Size** node instead. However, be aware that this node will not calculate individual block sizes for each image in a batch; it will only inspect the first image. _________________________ ### overlap Given as a percentage, indicates the portion of the block that overlaps with the next block when stitching. There is no subpixel overlap; the discrete overlap value is determined by the rounded value of `overlap * block_size`. In extreme cases, if the rounded value equals `0`, an overlap of `1` pixel is used instead. If it equals `block_size`, an overlap of `block_size - 1` is used instead. _________________________ ### tolerance When stitching, tolerance defines the margin of acceptable patches. - Lower tolerance: Selects sets of patches that better fit their neighborhood but may result in too much repetition. - Higher tolerance: Avoids repetition but may generate some not-so-seamless transitions between patches. A tolerance of 1 allows for the selection of patches with an error value up to twice the minimum error, where the minimum error is defined as the error of the most seamless patch. The selection among these patches is random. Perhaps counterintuitively, **a very low tolerance can sometimes hinder the generation of a seamless texture**. This occurs because patch selection becomes too restrictive, resulting in the lookup texture being output as is. This can lead the generation towards the lookup texture's edges, which may create discontinuities. This is especially important to consider when using small lookup textures relative to the block and generation sizes. _________________________ ### parallelization_lvl (Parallelization Level) Controls the level of parallel processing during the generation. * 0: Runs the algorithm sequentially (no parallelization). * 1: Segments the generation into 4 quadrants, which are generated in parallel. * 2 or more: Generally not recommended for most use cases as it can be slower than using a lower parallelization level. Consider this setting for larger generations and patches, and also account for the available CPU cores. When using a parallelization level of 2 or more: * Each quadrant's process will use a number of subprocesses equal to the parallelization level to generate that quadrant. * The generation is done via cascading rows, where a row can only be generated to the same extent as the previous row. Consequently, a process may stay idle waiting for the previous row generation to advance.
- - Parallel generation diagram - - ![parallel_generation_visualization](./documentation/quilting_parallel.jpg)

**Changing the parallelization level will affect the output!** The sides where the overlap occurs differ for each quadrant, so it is not possible to reproduce the same result as the sequential algorithm. Higher levels of parallelization do not suffer from this problem conceptually, however the current implementation won't generate the same output. _________________________ ### version The version parameter affects only patch search and selection. For better performance, it is recommended to use a version above zero. The behaviors for each version are as follows: * 0: **This option provides the same results as version 1.0.0 and the blend_into_patch input is ignored**. It uses the original jena2020 implementation with numpy, calculating the mean of squared differences for each overlapping section and summing these results. * 1: Similar to version 0 but utilizes OpenCV's matchTemplate with the TM_SQDIFF option, improving performance. * 2: Builds on version 1 by using the maximum error of all overlapping sections to minimize worst-case edges. For image nodes, the CIELAB color space is used instead of RGB. * 3: Employs matchTemplate with the TM_CCOEFF_NORMED option. The final error is 1 minus the minimum value from all overlapping sections, also minimizing worst-case edges. _________________________ ### blend_into_patch If enabled, the transition between an existing texture and a patch is made gradual. This is done using a combination of three masks: * Blurred Min-Cut Mask: similar to the original minimum cut mask but slightly blurred to avoid a harsh transition. The blurring is minimal to prevent the transition from extending to the margins, keeping block edges unnoticeable. * Distance Transform Mask: this mask scales the transition area based on the size of patches in the minimum cut mask. Larger patches have longer transition areas, ensuring a smoother blend. * Edge-Enhanced Mask: to prevent low values at the corners, which can make the patch noticeable, this mask combines the first two masks. It prioritizes the first mask near the patch edges to keep the corners unnoticeable. If the version input is set to zero, blend_into_patch is ignored.

Seamless nodes

_________________________ ### Additional Inputs Seamless nodes have the following additional inputs: * **lookup**: the texture from which the patches are obtained; if no lookup is provided, the src is used instead. * **ori**: the orientation in which to make the texture seamless: `H` for horizontally; `V` for vertically; `H & V` for both. When using Seamless SP nodes, the lookup must have at least the same width or height as the source, depending on the value of `ori`. To patch the texture horizontally, the lookup must have at least the same height, and to patch vertically, it must have at least the same width. Additionally, overlap is constrained to 50% since at least two opposite sides overlap with the texture. While 50% is the maximum possible overlap, where both overlaps meet, this upper limit should not typically be used. _________________________ ### Make Seamless SP vs MP Make Seamless Nodes come in two types: Single Patch (SP) and Multi Patch (MP). Single Patch (SP): * Faster than MP if no lookup texture is generated, albeit rarely with acceptable results. * May give a more cohesive result in specific cases (e.g., vertically patching a journal without breaking words). Multi Patch (MP): * More likely to produce good results without a lookup texture compared to SP. * Handles intricate textures better due to its more granular approach. * Allows adjusting pattern variation through the tolerance setting, similar to quilting nodes.
- - Image of SP and MP, respectively - - ![single_and_multi_patch_visualization](documentation/single_and_multi_patch_vis.jpg)

Both SP and MP make textures seamless by patching vertically first, then horizontally. The horizontal seam resulting from the second operation is patched with two square patches.
- - Image of the horizontal seam patching - - ![patching_the_seam_for_seamless_result](documentation/h_seam.jpg)

List vs Batch processing

Items in a list are processed one at a time, while items in a batch are processed in parallel. When using batches, the generation will still run with the configured level of parallelization, regardless of the batch size. Be mindful of this to avoid running too many processes simultaneously.

Block size estimation

The block size for generation can be estimated using the **Guess Quilting Block Size** node, or using a block size within the reserved range [-1, 0] as described in [Making sense of the nodes' inputs > block_size](#block_size). However, keep in mind that the automatically determined block size may not always be suitable for the texture, and that block size also affects generation time. A smaller block size may significantly increase the time required for generation. Enabling **simple_and_fast** is advised for medium and large textures, and it will skip the *SIFT analysis* described below. The heuristic for guessing the block size works as follows: 1. **Frequency Spectrum Analysis**: The texture's frequency spectrum is analyzed to identify points with high magnitudes. Only the maximum x or y components are retained, ignoring the direction of patterns. The selected high magnitudes are then adjusted and normalized so that their sum equals one. 2. **Optional SIFT Analysis**: This step is optional and slower, recommended only for small textures. SIFT descriptors are retrieved and clustered by size. The minimum distance (considering only the maximum of the x and y components) between elements in each cluster is calculated. The average descriptor size and the minimum distance within each cluster are weighted by an estimate of the area coverage in the texture. As in step 1, the weights are adjusted and normalized to sum to one. 3. **Compute Fitness**: The sizes from steps 1 and 2 are used to identify numbers that are closest to their multiples, prioritizing those with larger weights. The search is constrained as to do not exceed half the size of the smallest texture dimension. If step 2 is used, the total weight sum is 2, giving equal importance to both approaches. 4. **Final Selection**: From the list of candidate sizes obtained in step 3, the largest size (not necessarily the one with the best fitness) is selected as the block size.
## Installing dependencies To install only the core dependencies, navigate to your `python` or `python_embedded` folder and run the following command. Replace the `` placeholder with the actual path to the module: ```bash python -m pip install -e /comfyui_quilting ``` Alternatively, if you also want to install pyastar2d too, run the following command instead: ```bash python -m pip install -e /comfyui_quilting[recommended] ```

What about pyastar2d?

### Why install `pyastar2d`? The core installation allows you to use all the custom nodes provided in this project. Installing `pyastar2d` is optional. However, if you choose to install it, the minimum cut computation will utilize an alternative solution implemented with `pyastar2d`. This alternative solution offers a slight performance improvement, though its output may differ from the original `jena2020` implementation. #### Version Compatibility - If `pyastar2d` is installed, you can still use the version 1.0.0 solution for the quilting nodes by setting the `version` input to `0`. - Any version above `0` will use the `pyastar2d` solution instead. **Aside from the case mentioned above, outputs may differ depending on whether this optional module is installed or not.** ### Installing `pyastar2d` Installing pyastar2d requires the following: 1. **C++ Build Tools**: Ensure you have the necessary C++ build tools installed. On windows you will likely need to use the Visual Studio Installer. 2. **Python Development Files**: You need the Python “includes” and “libs” files, which might be missing in portable versions of Python. If they are missing, first verify your portable Python version by running: ```python --version```, and then install the full version of Python that corresponds to your portable version. Finally, symlink or copy the relevant folders to your portable Python directory.