File size: 3,449 Bytes
37d34c5 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 |
import comfy.utils
import custom_nodes.Derfuu_Nodes.types as type
import custom_nodes.Derfuu_Nodes.fields as field
import math
from custom_nodes.Derfuu_Nodes.tree import TREE_FUNCTIONS
class Int2Float:
def __init__(self):
pass
@classmethod
def INPUT_TYPES(cls):
return {
"required": {
"INT": (type.INT,),
}
}
RETURN_TYPES = (type.FLOAT,)
FUNCTION = "get_value"
CATEGORY = TREE_FUNCTIONS
def get_value(self, INT):
return (float(INT),)
class CeilNode:
def __init__(self) -> None:
pass
@classmethod
def INPUT_TYPES(cls):
return {
"required": {
"FLOAT": (type.FLOAT,),
}
}
RETURN_TYPES = (type.INT,)
FUNCTION = "get_value"
CATEGORY = TREE_FUNCTIONS
def get_value(self, FLOAT):
total = int(math.ceil(FLOAT))
return (total,)
class FloorNode:
def __init__(self) -> None:
pass
@classmethod
def INPUT_TYPES(cls):
return {
"required": {
"FLOAT": (type.FLOAT,),
}
}
RETURN_TYPES = (type.INT,)
FUNCTION = "get_value"
CATEGORY = TREE_FUNCTIONS
def get_value(self, FLOAT):
total = int(math.floor(FLOAT))
return (total,)
class Float2Tuple:
def __init__(self) -> None:
pass
@classmethod
def INPUT_TYPES(cls):
return {
"required": {
"FLOAT_A": (type.FLOAT,),
"FLOAT_B": (type.FLOAT,),
"Ceil2Int": ([False, True],),
}
}
RETURN_TYPES = (type.TUPLE,)
CATEGORY = TREE_FUNCTIONS
FUNCTION = 'get_tuple'
def get_tuple(self, FLOAT_A=0, FLOAT_B=0, Ceil2Int="false"):
if Ceil2Int == "true":
FLOAT_A = math.ceil(FLOAT_A)
FLOAT_B = math.ceil(FLOAT_B)
return ((FLOAT_A, FLOAT_B),)
class Tuple2Float:
def __init__(self) -> None:
pass
@classmethod
def INPUT_TYPES(cls):
return {
"required": {
"TUPLE": (type.TUPLE,),
}
}
RETURN_TYPES = (type.FLOAT, type.FLOAT,)
CATEGORY = TREE_FUNCTIONS
FUNCTION = 'get_tuple'
def get_tuple(self, TUPLE):
return (TUPLE[0], TUPLE[1],)
class GetLatentSize:
def __init__(self) -> None:
pass
@classmethod
def INPUT_TYPES(cls):
return {
"required": {
"LATENT": (type.LATENT,),
"ORIGINAL_VALUES": ([False, True],),
}
}
RETURN_TYPES = (type.TUPLE,)
CATEGORY = TREE_FUNCTIONS
FUNCTION = 'get_size'
def get_size(self, LATENT, ORIGINAL_VALUES=False):
lc = LATENT.copy()
size = lc["samples"].shape[3], lc["samples"].shape[2]
if ORIGINAL_VALUES == False:
size = size[0] * 8, size[1] * 8
return (size,)
class GetImageSize:
def __init__(self) -> None:
pass
@classmethod
def INPUT_TYPES(cls):
return {
"required": {
"IMAGE": (type.IMAGE,),
}
}
RETURN_TYPES = (type.TUPLE,)
CATEGORY = TREE_FUNCTIONS
FUNCTION = 'get_size'
def get_size(self, IMAGE):
samples = IMAGE.movedim(-1, 1)
size = samples.shape[3], samples.shape[2]
# size = size.movedim(1, -1)
return (size,)
|