Skip to content

Commit 8431225

Browse files
authored
Add files via upload
1 parent 79eb255 commit 8431225

11 files changed

+445
-446
lines changed

AILab_BiRefNet.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -389,7 +389,7 @@ def INPUT_TYPES(s):
389389
"invert_output": ("BOOLEAN", {"default": False, "tooltip": tooltips["invert_output"]}),
390390
"refine_foreground": ("BOOLEAN", {"default": False, "tooltip": tooltips["refine_foreground"]}),
391391
"background": (["Alpha", "Color"], {"default": "Alpha", "tooltip": tooltips["background"]}),
392-
"background_color": ("COLOR", {"default": "#222222", "tooltip": tooltips["background_color"]}),
392+
"background_color": ("COLORCODE", {"default": "#222222", "tooltip": tooltips["background_color"]}),
393393
}
394394
}
395395

AILab_BodySegment.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ def INPUT_TYPES(cls):
8383
"mask_offset": ("INT", {"default": 0, "min": -64, "max": 64, "step": 1, "tooltip": tooltips["mask_offset"]}),
8484
"invert_output": ("BOOLEAN", {"default": False, "tooltip": tooltips["invert_output"]}),
8585
"background": (["Alpha", "Color"], {"default": "Alpha", "tooltip": tooltips["background"]}),
86-
"background_color": ("COLOR", {"default": "#222222", "tooltip": tooltips["background_color"]}),
86+
"background_color": ("COLORCODE", {"default": "#222222", "tooltip": tooltips["background_color"]}),
8787
},
8888
}
8989

AILab_ClothSegment.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ def INPUT_TYPES(cls):
8383
"mask_offset": ("INT", {"default": 0, "min": -64, "max": 64, "step": 1, "tooltip": tooltips["mask_offset"]}),
8484
"invert_output": ("BOOLEAN", {"default": False, "tooltip": tooltips["invert_output"]}),
8585
"background": (["Alpha", "Color"], {"default": "Alpha", "tooltip": tooltips["background"]}),
86-
"background_color": ("COLOR", {"default": "#222222", "tooltip": tooltips["background_color"]}),
86+
"background_color": ("COLORCODE", {"default": "#222222", "tooltip": tooltips["background_color"]}),
8787
},
8888
}
8989

AILab_FaceSegment.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ def INPUT_TYPES(cls):
8383
"mask_offset": ("INT", {"default": 0, "min": -64, "max": 64, "step": 1, "tooltip": tooltips["mask_offset"]}),
8484
"invert_output": ("BOOLEAN", {"default": False, "tooltip": tooltips["invert_output"]}),
8585
"background": (["Alpha", "Color"], {"default": "Alpha", "tooltip": tooltips["background"]}),
86-
"background_color": ("COLOR", {"default": "#222222", "tooltip": tooltips["background_color"]}),
86+
"background_color": ("COLORCODE", {"default": "#222222", "tooltip": tooltips["background_color"]}),
8787
},
8888
}
8989

AILab_FashionSegment.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ def INPUT_TYPES(cls):
176176
"mask_offset": ("INT", {"default": 0, "min": -64, "max": 64, "step": 1, "tooltip": tooltips["mask_offset"]}),
177177
"invert_output": ("BOOLEAN", {"default": False, "tooltip": tooltips["invert_output"]}),
178178
"background": (["Alpha", "Color"], {"default": "Alpha", "tooltip": tooltips["background"]}),
179-
"background_color": ("COLOR", {"default": "#222222", "tooltip": tooltips["background_color"]}),
179+
"background_color": ("COLORCODE", {"default": "#222222", "tooltip": tooltips["background_color"]}),
180180
},
181181
}
182182

AILab_InpaintTools.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# ComfyUI-RMBG v2.6.0
1+
# ComfyUI-RMBG
22
#
33
# AILab Inpaint Tools
44
# A collection of specialized nodes for inpainting tasks in ComfyUI.
@@ -100,7 +100,7 @@ def INPUT_TYPES(cls):
100100
RETURN_TYPES = ("CONDITIONING", "LATENT", "MASK")
101101
RETURN_NAMES = ("CONDITIONING", "LATENT", "MASK")
102102
FUNCTION = "prepare_inpaint_conditioning"
103-
CATEGORY = "🧪AILab/🧽RMBG/🎭Inpaint"
103+
CATEGORY = "🧪AILab/🎭Inpaint"
104104

105105
def add_latent_to_conditioning(self, conditioning, latent=None):
106106
if latent is not None:

AILab_RMBG.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# ComfyUI-RMBG V2.9.1
1+
# ComfyUI-RMBG
22
# This custom node for ComfyUI provides functionality for background removal using various models,
33
# including RMBG-2.0, INSPYRENET, BEN, BEN2 and BIREFNET-HR. It leverages deep learning techniques
44
# to process images and generate masks for background removal.
@@ -547,7 +547,7 @@ def INPUT_TYPES(s):
547547
"invert_output": ("BOOLEAN", {"default": False, "tooltip": tooltips["invert_output"]}),
548548
"refine_foreground": ("BOOLEAN", {"default": False, "tooltip": tooltips["refine_foreground"]}),
549549
"background": (["Alpha", "Color"], {"default": "Alpha", "tooltip": tooltips["background"]}),
550-
"background_color": ("COLOR", {"default": "#222222", "tooltip": tooltips["background_color"]}),
550+
"background_color": ("COLORCODE", {"default": "#222222", "tooltip": tooltips["background_color"]}),
551551
}
552552
}
553553

AILab_SAM2Segment.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ def INPUT_TYPES(cls):
184184
"mask_offset": ("INT", {"default": 0, "min": -64, "max": 64, "step": 1, "tooltip": tooltips["mask_offset"]}),
185185
"invert_output": ("BOOLEAN", {"default": False, "tooltip": tooltips["invert_output"]}),
186186
"background": (["Alpha", "Color"], {"default": "Alpha", "tooltip": tooltips["background"]}),
187-
"background_color": ("COLOR", {"default": "#222222", "tooltip": tooltips["background_color"]}),
187+
"background_color": ("COLORCODE", {"default": "#222222", "tooltip": tooltips["background_color"]}),
188188
}
189189
}
190190

0 commit comments

Comments
 (0)