Nodes Browser

ComfyDeploy: How Node - Size Matcher works in ComfyUI?

What is Node - Size Matcher?

Match image/mask sizes

How to install it in ComfyDeploy?

Head over to the machine page

  1. Click on the "Create a new machine" button
  2. Select the Edit build steps
  3. Add a new step -> Custom Node
  4. Search for Node - Size Matcher and select it
  5. Close the build step dialig and then click on the "Save" button to rebuild the machine

Node - Size Matcher

Takes two images or masks and matches their sizes using various methods, detailed below. Inlcudes a node to smart-composite (auto match sizes first then composite)

cover_crop_center

Expand the smaller image to cover the larger image without changing the aspect ratio. Then center it. Then crop any overflowing edges until sizes match.

<details> <summary> &nbsp; Expand </summary>

alt text

</details>

cover_crop

Same as cover_crop_center but without centering the smaller after resizing.

<details> <summary>&nbsp; Expand </summary>

alt text

</details>

fit_center

Expand the smaller image as much as possible to fit inside the larger image without changing the aspect ratio. Then center it. Then pad any remaining space until sizes match.

<details> <summary>&nbsp; Expand </summary>

alt text

</details>

center_dont_resize

Center the smaller image inside the larger image without changing either sizes. Then pad the smaller image until sizes match.

<details> <summary>&nbsp; Expand </summary>

alt text

</details>

fill

Expand the smaller image to exactly match the size of the larger image, allowing the aspect ratio to change

<details> <summary>&nbsp; Expand </summary>

alt text

</details>

crop_larger_center

Center the smaller image on the larger image. Then crop the larger image to match the size of the smaller image

<details> <summary>&nbsp; Expand </summary>

alt text

</details>

crop_larger_topleft

Same as crop_larger_center but crops the larger image from the top left corner (skip centering)

<details> <summary>&nbsp; Expand </summary>

alt text

</details>

 

Node - Paste Cutout on Base Image (Compositing)

  • Composites two images together
  • Automatically matches size of the images with various size matching methods (if necessary)
  • If the cutout doesn't have an alpha channel (not really a cutout), the bg is automatically inferred and made transparent
  • invert option

Base Layer Composite with Alpha Layer

<details> <summary>&nbsp; Expand </summary>

paste-cutout

</details>

BG Being Inferred when Alpha Layer is Missing

<details> <summary>&nbsp; Expand </summary>

inferred-bg

</details>

Using with Auto Segmentation

<details> <summary>&nbsp; Expand </summary>

with-auto-segmentation

</details>

With Chromakeying

<details> <summary>&nbsp; Expand </summary>

with-chromakeying

</details>

Installation

  1. cd into ComfyUI/custom_nodes
  2. git clone this repo

Requirements

  • Python3.10+