File size: 1,097 Bytes
82ea528 |
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 |
"""
@author: akatz
@title: DepthCrafter Nodes
@nickname: DepthCrafter Nodes
@description: Custom nodes for use with DepthCrafter. Create consistent depth maps for your videos.
"""
from .nodes import DownloadAndLoadDepthCrafterModel, DepthCrafter
NODE_CONFIG = {
"DownloadAndLoadDepthCrafterModel": {"class": DownloadAndLoadDepthCrafterModel, "name": "DownloadAndLoadDepthCrafterModel"},
"DepthCrafter": {"class": DepthCrafter, "name": "DepthCrafter"},
}
def generate_node_mappings(node_config):
node_class_mappings = {}
node_display_name_mappings = {}
for node_name, node_info in node_config.items():
node_class_mappings[node_name] = node_info["class"]
node_display_name_mappings[node_name] = node_info.get("name", node_info["class"].__name__)
return node_class_mappings, node_display_name_mappings
NODE_CLASS_MAPPINGS, NODE_DISPLAY_NAME_MAPPINGS = generate_node_mappings(NODE_CONFIG)
WEB_DIRECTORY = "./web"
__all__ = ['NODE_CLASS_MAPPINGS', 'NODE_DISPLAY_NAME_MAPPINGS', "WEB_DIRECTORY"]
ascii_art = """
Depthcrafter Nodes Loaded
"""
print(ascii_art) |