You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+9Lines changed: 9 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -42,6 +42,9 @@ This node adjusts the text to describe the gender based on the input. If the gen
42
42
## GenderControlOutput
43
43
This node determines the output based on the input gender. If the gender input is 'M', it will output male-specific text, float, and integer values. If the gender input is 'F', it will output female-specific text, float, and integer values.
44
44
45
+
## BooleanControlOutput
46
+
This node outputs different values based on a boolean input. If the boolean input is True, it will output the values of true_text, true_float, true_int, True, and False. If the boolean input is False, it will output the values of false_text, false_float, false_int, False, and True.
47
+
45
48
## SplitMask
46
49
This node splits one mask into two masks of the same size according to the area of the submasks. If there are more than two areas, it will select the two largest submasks.
47
50
@@ -59,12 +62,18 @@ Check the three input masks. If any are available, return the first. If none are
59
62
## MaskCoverFourCorners
60
63
Generates a mask by covering the selected corners with circular edges. This mask can be used as an attention mask to remove watermarks from the corners.
61
64
65
+
## MaskofCenter
66
+
Generates a mask by covering the center of the image with a circular edge. This mask can be used as an attention mask, then model can focus on the center of the image.
67
+
62
68
## CheckpointLoaderSimpleWithSwitch
63
69
Enhanced the official LoadCheckpoint node by integrating three switches. Each switch controls whether a specific component is loaded. When a switch is turned off, the corresponding component will not be loaded. if you use the extra vae and close the model's vae loading, that will save memory.
64
70
65
71
## ImageResizeTo8x
66
72
Modified the [image-resize-comfyui](https://github.com/palant/image-resize-comfyui) image resize node by adding logic to crop the resulting image size to 8 times size, similar to the VAE encode node. This avoids pixel differences when pasting back by the ImageCompositeMasked node.
67
73
74
+
## ImageAutoSelector
75
+
This node is designed to automatically select the image from the input. If the prior image is not empty, return the prior image; otherwise, return the alternative image or the third image.
76
+
68
77
## TextPreview
69
78
Added the node for convenience. The code is originally from ComfyUI-Custom-Scripts, thanks.
0 commit comments