├── .github └── workflows │ └── publish_action.yml ├── .gitignore ├── LICENSE.txt ├── README.md ├── __init__.py ├── pyproject.toml ├── requirements.txt └── web ├── html └── threeVisualizer.html ├── js └── threeVisualizer.js ├── style ├── progressStyle.css └── threeStyle.css └── visualization.js /.github/workflows/publish_action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokayfem/ComfyUI-Depth-Visualization/HEAD/.github/workflows/publish_action.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | .DS_Store -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokayfem/ComfyUI-Depth-Visualization/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokayfem/ComfyUI-Depth-Visualization/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokayfem/ComfyUI-Depth-Visualization/HEAD/__init__.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokayfem/ComfyUI-Depth-Visualization/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | Pillow>=10.1.0 2 | -------------------------------------------------------------------------------- /web/html/threeVisualizer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokayfem/ComfyUI-Depth-Visualization/HEAD/web/html/threeVisualizer.html -------------------------------------------------------------------------------- /web/js/threeVisualizer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokayfem/ComfyUI-Depth-Visualization/HEAD/web/js/threeVisualizer.js -------------------------------------------------------------------------------- /web/style/progressStyle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokayfem/ComfyUI-Depth-Visualization/HEAD/web/style/progressStyle.css -------------------------------------------------------------------------------- /web/style/threeStyle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokayfem/ComfyUI-Depth-Visualization/HEAD/web/style/threeStyle.css -------------------------------------------------------------------------------- /web/visualization.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokayfem/ComfyUI-Depth-Visualization/HEAD/web/visualization.js --------------------------------------------------------------------------------