Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Canny ControlNet to McBoaty #100

Merged
merged 1 commit into from
Jul 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 34 additions & 1 deletion py/nodes/UpscalerRefiner/McBoaty_v3.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
import comfy_extras
import comfy_extras.nodes_custom_sampler
from comfy_extras.nodes_align_your_steps import AlignYourStepsScheduler
from comfy_extras.nodes_canny import Canny
import nodes
import folder_paths

Expand Down Expand Up @@ -59,6 +60,9 @@ class UpscalerRefiner_McBoaty_v3():

AYS_MODEL_TYPES = list(AYS_MODEL_TYPE_SIZES.keys())

CONTROLNETS = folder_paths.get_filename_list("controlnet")
CONTROLNET_CANNY_ONLY = ["None"]+[controlnet_name for controlnet_name in CONTROLNETS if 'canny' in controlnet_name.lower()]

INPUTS = {}
OUTPUTS = {}
PARAMS = {}
Expand Down Expand Up @@ -100,6 +104,12 @@ def INPUT_TYPES(self):
"tile_prompting_active": ("BOOLEAN", { "label": "Tile prompting (with WD14 Tagger - experimental)", "default": False, "label_on": "Active", "label_off": "Inactive"}),
"vision_llm_model": (MS_Llm.VISION_LLM_MODELS, { "label": "Vision LLM Model", "default": "microsoft/Florence-2-large" }),
"llm_model": (MS_Llm.LLM_MODELS, { "label": "LLM Model", "default": "llama3-70b-8192" }),
"control_net_name": (self.CONTROLNET_CANNY_ONLY , { "label": "ControlNet (Canny only)", "default": "None" }),
"low_threshold": ("FLOAT", {"label": "Low Threshold (Canny)", "default": 0.4, "min": 0.01, "max": 0.99, "step": 0.01}),
"high_threshold": ("FLOAT", {"label": "High Threshold (Canny)", "default": 0.8, "min": 0.01, "max": 0.99, "step": 0.01}),
"strength": ("FLOAT", {"label": "Strength (ControlNet)", "default": 1.0, "min": 0.0, "max": 10.0, "step": 0.01}),
"start_percent": ("FLOAT", {"label": "Start % (ControlNet)", "default": 0.0, "min": 0.0, "max": 1.0, "step": 0.001}),
"end_percent": ("FLOAT", {"label": "End % (ControlNet)", "default": 1.0, "min": 0.0, "max": 1.0, "step": 0.001})

},
"optional": {
Expand Down Expand Up @@ -223,6 +233,21 @@ def init(self, **kwargs):
self.KSAMPLER.sigmas = self._get_sigmas(self.KSAMPLER.sigmas_type, self.KSAMPLER.model, self.KSAMPLER.steps, self.KSAMPLER.denoise, self.KSAMPLER.scheduler, self.KSAMPLER.ays_model_type)
self.KSAMPLER.outpaint_sigmas = self._get_sigmas(self.KSAMPLER.sigmas_type, self.KSAMPLER.model, self.KSAMPLER.steps, 1, self.KSAMPLER.scheduler, self.KSAMPLER.ays_model_type)

self.CONTROLNET = SimpleNamespace(
name = kwargs.get('control_net_name', None),
path = None,
controlnet = None,
low_threshold = kwargs.get('low_threshold', None),
high_threshold = kwargs.get('high_threshold', None),
strength = kwargs.get('strength', None),
start_percent = kwargs.get('start_percent', None),
end_percent = kwargs.get('end_percent', None),
)
if self.CONTROLNET.name != "None":
self.CONTROLNET.path = folder_paths.get_full_path("controlnet", self.CONTROLNET.name)
self.CONTROLNET.controlnet = comfy.controlnet.load_controlnet(self.CONTROLNET.path)


self.LLM = SimpleNamespace(
vision_model = kwargs.get('vision_llm_model', None),
model = kwargs.get('llm_model', None),
Expand Down Expand Up @@ -331,17 +356,25 @@ def upscale_refine(self, image, iteration):

for index, latent_image in enumerate(grid_latents):
positive = self.KSAMPLER.positive
negative = self.KSAMPLER.negative
if self.PARAMS.tile_prompting_active:
log(f"tile {index + 1}/{total} : {grid_prompts[index]}", None, None, f"ClipTextEncoding {iteration}")
positive = nodes.CLIPTextEncode().encode(self.KSAMPLER.clip, grid_prompts[index])[0]

if self.CONTROLNET.controlnet is not None:
log(f"tile {index + 1}/{total}", None, None, f"Canny {iteration}")
canny_image = Canny().detect_edge(grid_images[index], self.CONTROLNET.low_threshold, self.CONTROLNET.high_threshold)[0]
log(f"tile {index + 1}/{total}", None, None, f"ControlNetApply {iteration}")
positive, negative = nodes.ControlNetApplyAdvanced().apply_controlnet(positive, negative, self.CONTROLNET.controlnet, canny_image, self.CONTROLNET.strength, self.CONTROLNET.start_percent, self.CONTROLNET.end_percent, self.KSAMPLER.vae )

log(f"tile {index + 1}/{total}", None, None, f"Refining {iteration}")
latent_output = comfy_extras.nodes_custom_sampler.SamplerCustom().sample(
self.KSAMPLER.model,
self.KSAMPLER.add_noise,
self.KSAMPLER.noise_seed,
self.KSAMPLER.cfg,
positive,
self.KSAMPLER.negative,
negative,
self.KSAMPLER.sampler,
self.KSAMPLER.sigmas,
latent_image
Expand Down
38 changes: 36 additions & 2 deletions py/nodes/UpscalerRefiner/McBoaty_v4.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
import comfy_extras
import comfy_extras.nodes_custom_sampler
from comfy_extras.nodes_align_your_steps import AlignYourStepsScheduler
from comfy_extras.nodes_canny import Canny
import nodes
from server import PromptServer
from aiohttp import web
Expand Down Expand Up @@ -214,6 +215,8 @@ def init(self, **kwargs):
steps = None,
cfg = None,
denoise = None,
control_net_name = None,
control = None,
)

# TODO : make the feather_mask proportional to tile size ?
Expand Down Expand Up @@ -307,6 +310,9 @@ class McBoaty_Refiner_v4():
'SVD': 1024,
}
AYS_MODEL_TYPES = list(AYS_MODEL_TYPE_SIZES.keys())

CONTROLNETS = folder_paths.get_filename_list("controlnet")
CONTROLNET_CANNY_ONLY = ["None"]+[controlnet_name for controlnet_name in CONTROLNETS if 'canny' in controlnet_name.lower()]

@classmethod
def INPUT_TYPES(self):
Expand All @@ -326,6 +332,13 @@ def INPUT_TYPES(self):
"steps": ("INT", { "label": "Steps", "default": 10, "min": 1, "max": 10000}),
"cfg": ("FLOAT", { "label": "CFG", "default": 2.5, "min": 0.0, "max": 100.0, "step":0.1, "round": 0.01}),
"denoise": ("FLOAT", { "label": "Denoise", "default": 0.27, "min": 0.0, "max": 1.0, "step": 0.01}),
"control_net_name": (self.CONTROLNET_CANNY_ONLY , { "label": "ControlNet (Canny only)", "default": "None" }),
"low_threshold": ("FLOAT", {"label": "Low Threshold (Canny)", "default": 0.4, "min": 0.01, "max": 0.99, "step": 0.01}),
"high_threshold": ("FLOAT", {"label": "High Threshold (Canny)", "default": 0.8, "min": 0.01, "max": 0.99, "step": 0.01}),
"strength": ("FLOAT", {"label": "Strength (ControlNet)", "default": 1.0, "min": 0.0, "max": 10.0, "step": 0.01}),
"start_percent": ("FLOAT", {"label": "Start % (ControlNet)", "default": 0.0, "min": 0.0, "max": 1.0, "step": 0.001}),
"end_percent": ("FLOAT", {"label": "End % (ControlNet)", "default": 1.0, "min": 0.0, "max": 1.0, "step": 0.001})


},
"optional": {
Expand Down Expand Up @@ -424,11 +437,25 @@ def init(self, **kwargs):
self.KSAMPLER.steps = kwargs.get('steps', None)
self.KSAMPLER.cfg = kwargs.get('cfg', None)
self.KSAMPLER.denoise = kwargs.get('denoise', None)

self.KSAMPLER.sampler = comfy_extras.nodes_custom_sampler.KSamplerSelect().get_sampler(self.KSAMPLER.sampler_name)[0]
self.KSAMPLER.tile_size_sampler = self.AYS_MODEL_TYPE_SIZES[self.KSAMPLER.ays_model_type]
self.KSAMPLER.sigmas = self._get_sigmas(self.KSAMPLER.sigmas_type, self.KSAMPLER.model, self.KSAMPLER.steps, self.KSAMPLER.denoise, self.KSAMPLER.scheduler, self.KSAMPLER.ays_model_type)
self.KSAMPLER.outpaint_sigmas = self._get_sigmas(self.KSAMPLER.sigmas_type, self.KSAMPLER.model, self.KSAMPLER.steps, 1, self.KSAMPLER.scheduler, self.KSAMPLER.ays_model_type)

self.CONTROLNET = SimpleNamespace(
name = kwargs.get('control_net_name', None),
path = None,
controlnet = None,
low_threshold = kwargs.get('low_threshold', None),
high_threshold = kwargs.get('high_threshold', None),
strength = kwargs.get('strength', None),
start_percent = kwargs.get('start_percent', None),
end_percent = kwargs.get('end_percent', None),
)
if self.CONTROLNET.name != "None":
self.CONTROLNET.path = folder_paths.get_full_path("controlnet", self.CONTROLNET.name)
self.CONTROLNET.controlnet = comfy.controlnet.load_controlnet(self.CONTROLNET.path)

grid_images = kwargs.get('tiles', (None,) * len(self.OUTPUTS.grid_images))
if len(grid_images) != len(self.OUTPUTS.grid_images):
Expand Down Expand Up @@ -505,17 +532,24 @@ def refine(self, image, iteration):
latent_output = None
if self.PARAMS.tile_to_process == 0 or (self.PARAMS.tile_to_process > 0 and index == tile_to_process_index):
positive = self.KSAMPLER.positive
negative = self.KSAMPLER.negative
if self.PARAMS.tile_prompting_active:
log(f"tile {index + 1}/{total} : {self.OUTPUTS.grid_prompts[index]}", None, None, f"ClipTextEncoding {iteration}")
positive = nodes.CLIPTextEncode().encode(self.KSAMPLER.clip, self.OUTPUTS.grid_prompts[index])[0]
if self.CONTROLNET.controlnet is not None:
log(f"tile {index + 1}/{total}", None, None, f"Canny {iteration}")
canny_image = Canny().detect_edge(self.OUTPUTS.grid_images[index], self.CONTROLNET.low_threshold, self.CONTROLNET.high_threshold)[0]
log(f"tile {index + 1}/{total}", None, None, f"ControlNetApply {iteration}")
positive, negative = nodes.ControlNetApplyAdvanced().apply_controlnet(positive, negative, self.CONTROLNET.controlnet, canny_image, self.CONTROLNET.strength, self.CONTROLNET.start_percent, self.CONTROLNET.end_percent, self.KSAMPLER.vae )

log(f"tile {index + 1}/{total}", None, None, f"Refining {iteration}")
latent_output = comfy_extras.nodes_custom_sampler.SamplerCustom().sample(
self.KSAMPLER.model,
self.KSAMPLER.add_noise,
self.KSAMPLER.noise_seed,
self.KSAMPLER.cfg,
positive,
self.KSAMPLER.negative,
negative,
self.KSAMPLER.sampler,
self.KSAMPLER.sigmas,
latent_image
Expand Down
2 changes: 1 addition & 1 deletion py/utils/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
#
###

VERSION = "4.4.3"
VERSION = "4.4.4"
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[project]
name = "comfyui_marascott_nodes"
description = "A set of nodes including a universal bus, an Inpainting By Mask and a large Upscaler/Refiner"
version = "4.4.3"
version = "4.4.4"
license = "LICENSE"
dependencies = ["blend_modes", "numba", "color-matcher", "groq", "opencv-python"]

Expand Down