|
from ..utils import common_annotator_call, define_preprocessor_inputs, INPUT |
|
|
|
|
|
class Tile_Preprocessor: |
|
@classmethod |
|
def INPUT_TYPES(s): |
|
return define_preprocessor_inputs( |
|
pyrUp_iters=INPUT.INT(default=3, min=1, max=10), |
|
resolution=INPUT.RESOLUTION() |
|
) |
|
|
|
|
|
RETURN_TYPES = ("IMAGE",) |
|
FUNCTION = "execute" |
|
|
|
CATEGORY = "ControlNet Preprocessors/tile" |
|
|
|
def execute(self, image, pyrUp_iters, resolution=512, **kwargs): |
|
from custom_controlnet_aux.tile import TileDetector |
|
|
|
return (common_annotator_call(TileDetector(), image, pyrUp_iters=pyrUp_iters, resolution=resolution),) |
|
|
|
class TTPlanet_TileGF_Preprocessor: |
|
@classmethod |
|
def INPUT_TYPES(s): |
|
return define_preprocessor_inputs( |
|
scale_factor=INPUT.FLOAT(default=1.00, min=1.000, max=8.00), |
|
blur_strength=INPUT.FLOAT(default=2.0, min=1.0, max=10.0), |
|
radius=INPUT.INT(default=7, min=1, max=20), |
|
eps=INPUT.FLOAT(default=0.01, min=0.001, max=0.1, step=0.001), |
|
resolution=INPUT.RESOLUTION() |
|
) |
|
|
|
RETURN_TYPES = ("IMAGE",) |
|
FUNCTION = "execute" |
|
|
|
CATEGORY = "ControlNet Preprocessors/tile" |
|
|
|
def execute(self, image, scale_factor, blur_strength, radius, eps, **kwargs): |
|
from custom_controlnet_aux.tile import TTPlanet_Tile_Detector_GF |
|
|
|
return (common_annotator_call(TTPlanet_Tile_Detector_GF(), image, scale_factor=scale_factor, blur_strength=blur_strength, radius=radius, eps=eps),) |
|
|
|
class TTPlanet_TileSimple_Preprocessor: |
|
@classmethod |
|
def INPUT_TYPES(s): |
|
return define_preprocessor_inputs( |
|
scale_factor=INPUT.FLOAT(default=1.00, min=1.000, max=8.00), |
|
blur_strength=INPUT.FLOAT(default=2.0, min=1.0, max=10.0), |
|
) |
|
|
|
RETURN_TYPES = ("IMAGE",) |
|
FUNCTION = "execute" |
|
|
|
CATEGORY = "ControlNet Preprocessors/tile" |
|
|
|
def execute(self, image, scale_factor, blur_strength): |
|
from custom_controlnet_aux.tile import TTPLanet_Tile_Detector_Simple |
|
|
|
return (common_annotator_call(TTPLanet_Tile_Detector_Simple(), image, scale_factor=scale_factor, blur_strength=blur_strength),) |
|
|
|
|
|
NODE_CLASS_MAPPINGS = { |
|
"TilePreprocessor": Tile_Preprocessor, |
|
"TTPlanet_TileGF_Preprocessor": TTPlanet_TileGF_Preprocessor, |
|
"TTPlanet_TileSimple_Preprocessor": TTPlanet_TileSimple_Preprocessor |
|
} |
|
|
|
NODE_DISPLAY_NAME_MAPPINGS = { |
|
"TilePreprocessor": "Tile", |
|
"TTPlanet_TileGF_Preprocessor": "TTPlanet Tile GuidedFilter", |
|
"TTPlanet_TileSimple_Preprocessor": "TTPlanet Tile Simple" |
|
} |
|
|