mirror of
https://github.com/comfyanonymous/ComfyUI.git
synced 2026-01-26 06:10:15 +08:00
Merge 3d animation node
This commit is contained in:
parent
dc95b6acc0
commit
43ea917122
@ -34,58 +34,6 @@ class Load3D():
|
|||||||
"height": ("INT", {"default": 1024, "min": 1, "max": 4096, "step": 1}),
|
"height": ("INT", {"default": 1024, "min": 1, "max": 4096, "step": 1}),
|
||||||
}}
|
}}
|
||||||
|
|
||||||
RETURN_TYPES = ("IMAGE", "MASK", "STRING", "IMAGE", "IMAGE", "LOAD3D_CAMERA", IO.VIDEO)
|
|
||||||
RETURN_NAMES = ("image", "mask", "mesh_path", "normal", "lineart", "camera_info", "recording_video")
|
|
||||||
|
|
||||||
FUNCTION = "process"
|
|
||||||
EXPERIMENTAL = True
|
|
||||||
|
|
||||||
CATEGORY = "3d"
|
|
||||||
|
|
||||||
def process(self, model_file, image, **kwargs):
|
|
||||||
image_path = folder_paths.get_annotated_filepath(image['image'])
|
|
||||||
mask_path = folder_paths.get_annotated_filepath(image['mask'])
|
|
||||||
normal_path = folder_paths.get_annotated_filepath(image['normal'])
|
|
||||||
lineart_path = folder_paths.get_annotated_filepath(image['lineart'])
|
|
||||||
|
|
||||||
load_image_node = nodes.LoadImage()
|
|
||||||
output_image, ignore_mask = load_image_node.load_image(image=image_path)
|
|
||||||
ignore_image, output_mask = load_image_node.load_image(image=mask_path)
|
|
||||||
normal_image, ignore_mask2 = load_image_node.load_image(image=normal_path)
|
|
||||||
lineart_image, ignore_mask3 = load_image_node.load_image(image=lineart_path)
|
|
||||||
|
|
||||||
video = None
|
|
||||||
|
|
||||||
if image['recording'] != "":
|
|
||||||
recording_video_path = folder_paths.get_annotated_filepath(image['recording'])
|
|
||||||
|
|
||||||
video = VideoFromFile(recording_video_path)
|
|
||||||
|
|
||||||
return output_image, output_mask, model_file, normal_image, lineart_image, image['camera_info'], video
|
|
||||||
|
|
||||||
class Load3DAnimation():
|
|
||||||
@classmethod
|
|
||||||
def INPUT_TYPES(s):
|
|
||||||
input_dir = os.path.join(folder_paths.get_input_directory(), "3d")
|
|
||||||
|
|
||||||
os.makedirs(input_dir, exist_ok=True)
|
|
||||||
|
|
||||||
input_path = Path(input_dir)
|
|
||||||
base_path = Path(folder_paths.get_input_directory())
|
|
||||||
|
|
||||||
files = [
|
|
||||||
normalize_path(str(file_path.relative_to(base_path)))
|
|
||||||
for file_path in input_path.rglob("*")
|
|
||||||
if file_path.suffix.lower() in {'.gltf', '.glb', '.fbx'}
|
|
||||||
]
|
|
||||||
|
|
||||||
return {"required": {
|
|
||||||
"model_file": (sorted(files), {"file_upload": True}),
|
|
||||||
"image": ("LOAD_3D_ANIMATION", {}),
|
|
||||||
"width": ("INT", {"default": 1024, "min": 1, "max": 4096, "step": 1}),
|
|
||||||
"height": ("INT", {"default": 1024, "min": 1, "max": 4096, "step": 1}),
|
|
||||||
}}
|
|
||||||
|
|
||||||
RETURN_TYPES = ("IMAGE", "MASK", "STRING", "IMAGE", "LOAD3D_CAMERA", IO.VIDEO)
|
RETURN_TYPES = ("IMAGE", "MASK", "STRING", "IMAGE", "LOAD3D_CAMERA", IO.VIDEO)
|
||||||
RETURN_NAMES = ("image", "mask", "mesh_path", "normal", "camera_info", "recording_video")
|
RETURN_NAMES = ("image", "mask", "mesh_path", "normal", "camera_info", "recording_video")
|
||||||
|
|
||||||
@ -140,43 +88,12 @@ class Preview3D():
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
class Preview3DAnimation():
|
|
||||||
@classmethod
|
|
||||||
def INPUT_TYPES(s):
|
|
||||||
return {"required": {
|
|
||||||
"model_file": ("STRING", {"default": "", "multiline": False}),
|
|
||||||
},
|
|
||||||
"optional": {
|
|
||||||
"camera_info": ("LOAD3D_CAMERA", {})
|
|
||||||
}}
|
|
||||||
|
|
||||||
OUTPUT_NODE = True
|
|
||||||
RETURN_TYPES = ()
|
|
||||||
|
|
||||||
CATEGORY = "3d"
|
|
||||||
|
|
||||||
FUNCTION = "process"
|
|
||||||
EXPERIMENTAL = True
|
|
||||||
|
|
||||||
def process(self, model_file, **kwargs):
|
|
||||||
camera_info = kwargs.get("camera_info", None)
|
|
||||||
|
|
||||||
return {
|
|
||||||
"ui": {
|
|
||||||
"result": [model_file, camera_info]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
NODE_CLASS_MAPPINGS = {
|
NODE_CLASS_MAPPINGS = {
|
||||||
"Load3D": Load3D,
|
"Load3D": Load3D,
|
||||||
"Load3DAnimation": Load3DAnimation,
|
|
||||||
"Preview3D": Preview3D,
|
"Preview3D": Preview3D,
|
||||||
"Preview3DAnimation": Preview3DAnimation
|
|
||||||
}
|
}
|
||||||
|
|
||||||
NODE_DISPLAY_NAME_MAPPINGS = {
|
NODE_DISPLAY_NAME_MAPPINGS = {
|
||||||
"Load3D": "Load 3D",
|
"Load3D": "Load 3D & Animation",
|
||||||
"Load3DAnimation": "Load 3D - Animation",
|
"Preview3D": "Preview 3D & Animation",
|
||||||
"Preview3D": "Preview 3D",
|
|
||||||
"Preview3DAnimation": "Preview 3D - Animation"
|
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user