Spaces:
Running
on
L40S
Running
on
L40S
File size: 10,095 Bytes
4450790 |
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 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 |
#---------------------------------------------------------------------------------------------------------------------#
# CR Animation Nodes by RockOfFire and Akatsuzi https://github.com/Suzie1/CR-Animation-Nodes
# for ComfyUI https://github.com/comfyanonymous/ComfyUI
#---------------------------------------------------------------------------------------------------------------------#
import torch
from ..categories import icons
#---------------------------------------------------------------------------------------------------------------------#
# NODES
#---------------------------------------------------------------------------------------------------------------------#
class CR_GradientInteger:
@classmethod
def INPUT_TYPES(s):
gradient_profiles = ["Lerp"]
return {"required": {"start_value": ("INT", {"default": 1.0, "min": 0.0, "max": 9999.0, "step": 1.0,}),
"end_value": ("INT", {"default": 1.0, "min": 0.0, "max": 9999.0, "step": 1.0,}),
"start_frame": ("INT", {"default": 0.0, "min": 0.0, "max": 9999.0, "step": 1.0,}),
"frame_duration": ("INT", {"default": 1.0, "min": 0.0, "max": 9999.0, "step": 1.0,}),
"current_frame": ("INT", {"default": 0.0, "min": 0.0, "max": 9999.0, "step": 1.0,}),
"gradient_profile": (gradient_profiles,)
},
}
RETURN_TYPES = ("INT", "STRING", )
RETURN_NAMES = ("INT", "show_help", )
FUNCTION = "gradient"
CATEGORY = icons.get("Comfyroll/Animation/Interpolate")
def gradient(self, start_value, end_value, start_frame, frame_duration, current_frame, gradient_profile):
show_help = "https://github.com/Suzie1/ComfyUI_Comfyroll_CustomNodes/wiki/Interpolation-Nodes#cr-gradient-integer"
if current_frame < start_frame:
return (start_value, show_help, )
if current_frame > start_frame + frame_duration:
return (end_value, show_help, )
step = (end_value - start_value) / frame_duration
current_step = current_frame - start_frame
int_out = start_value + int(current_step * step)
return (int_out, show_help, )
#---------------------------------------------------------------------------------------------------------------------#
class CR_GradientFloat:
@classmethod
def INPUT_TYPES(s):
gradient_profiles = ["Lerp"]
return {"required": {"start_value": ("FLOAT", {"default": 1.0, "min": 0.0, "max": 9999.0, "step": 0.01,}),
"end_value": ("FLOAT", {"default": 1.0, "min": 0.0, "max": 9999.0, "step": 0.01,}),
"start_frame": ("INT", {"default": 0.0, "min": 0.0, "max": 9999.0, "step": 1.0,}),
"frame_duration": ("INT", {"default": 1.0, "min": 0.0, "max": 9999.0, "step": 1.0,}),
"current_frame": ("INT", {"default": 0.0, "min": 0.0, "max": 9999.0, "step": 1.0,}),
"gradient_profile": (gradient_profiles,)
},
}
RETURN_TYPES = ("FLOAT", "STRING", )
RETURN_NAMES = ("FLOAT", "show_help", )
FUNCTION = "gradient"
CATEGORY = icons.get("Comfyroll/Animation/Interpolate")
def gradient(self, start_value, end_value, start_frame, frame_duration, current_frame, gradient_profile):
show_help = "https://github.com/Suzie1/ComfyUI_Comfyroll_CustomNodes/wiki/Interpolation-Nodes#cr-gradient-float"
if current_frame < start_frame:
return (start_value, show_help, )
if current_frame > start_frame + frame_duration:
return (end_value, show_help, )
step = (end_value - start_value) / frame_duration
current_step = current_frame - start_frame
float_out = start_value + current_step * step
return (float_out, show_help, )
#---------------------------------------------------------------------------------------------------------------------#
class CR_IncrementFloat:
@classmethod
def INPUT_TYPES(s):
return {"required": {"start_value": ("FLOAT", {"default": 1.0, "min": 0.0, "max": 9999.0, "step": 0.001,}),
"step": ("FLOAT", {"default": 0.1, "min": -9999.0, "max": 9999.0, "step": 0.001,}),
"start_frame": ("INT", {"default": 0.0, "min": 0.0, "max": 9999.0, "step": 1.00,}),
"frame_duration": ("INT", {"default": 1.0, "min": 0.0, "max": 9999.0, "step": 1.0,}),
"current_frame": ("INT", {"default": 0.0, "min": 0.0, "max": 9999.0, "step": 1.0,}),
},
}
RETURN_TYPES = ("FLOAT", "STRING", )
RETURN_NAMES = ("FLOAT", "show_help", )
OUTPUT_NODE = True
FUNCTION = "increment"
CATEGORY = icons.get("Comfyroll/Animation/Interpolate")
def increment(self, start_value, step, start_frame, frame_duration, current_frame):
show_help = "https://github.com/Suzie1/ComfyUI_Comfyroll_CustomNodes/wiki/Interpolation-Nodes#cr-increment-float"
#print(f"current frame {current_frame}")
if current_frame < start_frame:
return (start_value, show_help, )
current_value = start_value + (current_frame - start_frame) * step
if current_frame <= start_frame + frame_duration:
current_value += step
#print(f"<current value {current_value}")
return (current_value, show_help, )
return (current_value, show_help, )
#---------------------------------------------------------------------------------------------------------------------#
class CR_IncrementInteger:
@classmethod
def INPUT_TYPES(s):
return {"required": {"start_value": ("INT", {"default": 1.0, "min": 0.0, "max": 9999.0, "step": 1.0,}),
"step": ("INT", {"default": 1.0, "min": -9999.0, "max": 9999.0, "step": 1.0,}),
"start_frame": ("INT", {"default": 0.0, "min": 0.0, "max": 9999.0, "step": 1.0,}),
"frame_duration": ("INT", {"default": 1.0, "min": 0.0, "max": 9999.0, "step": 1.0,}),
"current_frame": ("INT", {"default": 0.0, "min": 0.0, "max": 9999.0, "step": 1.0,}),
},
}
RETURN_TYPES = ("INT", "STRING", )
RETURN_NAMES = ("INT", "show_help", )
OUTPUT_NODE = True
FUNCTION = "increment"
CATEGORY = icons.get("Comfyroll/Animation/Interpolate")
def increment(self, start_value, step, start_frame, frame_duration, current_frame):
show_help = "https://github.com/Suzie1/ComfyUI_Comfyroll_CustomNodes/wiki/Interpolation-Nodes#cr-increment-integer"
#print(f"current frame {current_frame}")
if current_frame < start_frame:
return (start_value, show_help, )
current_value = start_value + (current_frame - start_frame) * step
if current_frame <= start_frame + frame_duration:
current_value += step
#print(f"<current value {current_value}")
return (current_value, show_help, )
return (current_value, show_help, )
#---------------------------------------------------------------------------------------------------------------------#
class CR_InterpolateLatents:
@classmethod
def INPUT_TYPES(cls):
#interpolation_methods = ["lerp", "slerp"]
interpolation_methods = ["lerp"]
return {
"required": {
"latent1": ("LATENT",),
"latent2": ("LATENT",),
"weight": ("FLOAT", {"default": 0.5, "min": 0.0, "max": 1.0, "step": 0.01}),
"method": (interpolation_methods,),
}
}
RETURN_TYPES = ("LATENT", "STRING", )
RETURN_NAMES = ("LATENT", "show_help", )
FUNCTION = "interpolate"
CATEGORY = icons.get("Comfyroll/Animation/Interpolate")
def interpolate(self, latent1, latent2, weight, method):
a = latent1.copy()
b = latent2.copy()
c = {}
if method == "lerp":
torch.lerp(a["samples"], b["samples"], weight, out=a["samples"])
elif method == "slerp":
dot_products = torch.sum(latent1["samples"] * latent2["samples"], dim=(2, 3))
dot_products = torch.clamp(dot_products, -1, 1) # Ensure dot products are within valid range
angles = torch.acos(dot_products)
sin_angles = torch.sin(angles)
weight1 = torch.sin((1 - weight) * angles) / sin_angles
weight2 = torch.sin(weight * angles) / sin_angles
# Broadcast weights to match latent samples dimensions
weight1 = weight1.unsqueeze(-1).unsqueeze(-1)
weight2 = weight2.unsqueeze(-1).unsqueeze(-1)
interpolated_samples = weight1 * latent1["samples"] + weight2 * latent2["samples"]
a["samples"] = interpolated_samples
show_help = "https://github.com/Suzie1/ComfyUI_Comfyroll_CustomNodes/wiki/Interpolation-Nodes#cr-interpolate-latents"
return (a, show_help, )
#---------------------------------------------------------------------------------------------------------------------#
# MAPPINGS
#---------------------------------------------------------------------------------------------------------------------#
# For reference only, actual mappings are in __init__.py
'''
# Interpolate Anything
"CR Gradient Float":CR_GradientFloat,
"CR Gradient Integer":CR_GradientInteger,
"CR Increment Float":CR_IncrementFloat,
"CR Increment Integer":CR_IncrementInteger,
# Latent
"CR Interpolate Latents":CR_InterpolateLatents,
}
'''
|