mirror of
https://github.com/jtydhr88/ComfyUI-See-through.git
synced 2026-05-05 20:00:40 +00:00
23 lines
768 B
Python
23 lines
768 B
Python
"""
|
|
ComfyUI-See-through: Anime Layer Decomposition from a Single Image
|
|
|
|
Wraps the See-through research project as ComfyUI custom nodes.
|
|
Paper: arxiv:2602.03749
|
|
"""
|
|
import traceback
|
|
|
|
WEB_DIRECTORY = "./web"
|
|
|
|
print("[ComfyUI-See-through] __init__.py loading...", flush=True)
|
|
|
|
try:
|
|
from .nodes import NODE_CLASS_MAPPINGS, NODE_DISPLAY_NAME_MAPPINGS
|
|
print(f"[ComfyUI-See-through] Loaded {len(NODE_CLASS_MAPPINGS)} nodes: {list(NODE_CLASS_MAPPINGS.keys())}", flush=True)
|
|
except Exception as e:
|
|
print(f"[ComfyUI-See-through] Failed to import nodes: {e}", flush=True)
|
|
traceback.print_exc()
|
|
NODE_CLASS_MAPPINGS = {}
|
|
NODE_DISPLAY_NAME_MAPPINGS = {}
|
|
|
|
__all__ = ["NODE_CLASS_MAPPINGS", "NODE_DISPLAY_NAME_MAPPINGS", "WEB_DIRECTORY"]
|
|
__version__ = "0.2.2"
|