├── .github └── workflows │ └── publish.yml ├── .gitignore ├── Anyline+MistoLine_ComfyUI_workflow.json ├── LICENSE ├── README.md ├── __init__.py ├── anyline.py ├── checkpoints └── MTEED.pth ├── examples ├── Anyline+MistoLine_workflow.jpg ├── TEED.png ├── comparison.png ├── intro.png └── results.png ├── pyproject.toml ├── requirements.txt └── standalone_install_requirements.bat /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMistoAI/ComfyUI-Anyline/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMistoAI/ComfyUI-Anyline/HEAD/.gitignore -------------------------------------------------------------------------------- /Anyline+MistoLine_ComfyUI_workflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMistoAI/ComfyUI-Anyline/HEAD/Anyline+MistoLine_ComfyUI_workflow.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMistoAI/ComfyUI-Anyline/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMistoAI/ComfyUI-Anyline/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMistoAI/ComfyUI-Anyline/HEAD/__init__.py -------------------------------------------------------------------------------- /anyline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMistoAI/ComfyUI-Anyline/HEAD/anyline.py -------------------------------------------------------------------------------- /checkpoints/MTEED.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMistoAI/ComfyUI-Anyline/HEAD/checkpoints/MTEED.pth -------------------------------------------------------------------------------- /examples/Anyline+MistoLine_workflow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMistoAI/ComfyUI-Anyline/HEAD/examples/Anyline+MistoLine_workflow.jpg -------------------------------------------------------------------------------- /examples/TEED.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMistoAI/ComfyUI-Anyline/HEAD/examples/TEED.png -------------------------------------------------------------------------------- /examples/comparison.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMistoAI/ComfyUI-Anyline/HEAD/examples/comparison.png -------------------------------------------------------------------------------- /examples/intro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMistoAI/ComfyUI-Anyline/HEAD/examples/intro.png -------------------------------------------------------------------------------- /examples/results.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMistoAI/ComfyUI-Anyline/HEAD/examples/results.png -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMistoAI/ComfyUI-Anyline/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | pathlib 2 | huggingface_hub 3 | scikit-image 4 | -------------------------------------------------------------------------------- /standalone_install_requirements.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheMistoAI/ComfyUI-Anyline/HEAD/standalone_install_requirements.bat --------------------------------------------------------------------------------