├── .gitignore ├── LICENSE ├── Paint3D ├── controlnet │ ├── config │ │ ├── UV_based_inpaint_template.yaml │ │ ├── UV_gen_template.yaml │ │ └── depth_based_inpaint_template.yaml │ ├── diffusers_cnet_img2img.py │ ├── diffusers_cnet_inpaint.py │ └── diffusers_cnet_txt2img.py ├── paint3d │ ├── __init__.py │ ├── config │ │ └── train_config_paint3d.py │ ├── dataset.py │ ├── models │ │ ├── mesh.py │ │ ├── render.py │ │ └── textured_mesh.py │ ├── post_process.py │ ├── trainer.py │ └── utils.py └── tools │ ├── convert_original_stable_diffusion_to_diffusers.py │ └── idx_split │ ├── idx_all.txt │ ├── idx_test.txt │ └── idx_train.txt ├── README.md ├── Suzanne_monkey ├── Suzanne_monkey.obj ├── material.mtl └── material_0.png ├── __init__.py ├── nodes.py ├── requirements.txt └── workflow.json /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | memo.txt 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3rd00d/ComfyUI-Paint3D-Nodes/HEAD/LICENSE -------------------------------------------------------------------------------- /Paint3D/controlnet/config/UV_based_inpaint_template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3rd00d/ComfyUI-Paint3D-Nodes/HEAD/Paint3D/controlnet/config/UV_based_inpaint_template.yaml -------------------------------------------------------------------------------- /Paint3D/controlnet/config/UV_gen_template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3rd00d/ComfyUI-Paint3D-Nodes/HEAD/Paint3D/controlnet/config/UV_gen_template.yaml -------------------------------------------------------------------------------- /Paint3D/controlnet/config/depth_based_inpaint_template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3rd00d/ComfyUI-Paint3D-Nodes/HEAD/Paint3D/controlnet/config/depth_based_inpaint_template.yaml -------------------------------------------------------------------------------- /Paint3D/controlnet/diffusers_cnet_img2img.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3rd00d/ComfyUI-Paint3D-Nodes/HEAD/Paint3D/controlnet/diffusers_cnet_img2img.py -------------------------------------------------------------------------------- /Paint3D/controlnet/diffusers_cnet_inpaint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3rd00d/ComfyUI-Paint3D-Nodes/HEAD/Paint3D/controlnet/diffusers_cnet_inpaint.py -------------------------------------------------------------------------------- /Paint3D/controlnet/diffusers_cnet_txt2img.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3rd00d/ComfyUI-Paint3D-Nodes/HEAD/Paint3D/controlnet/diffusers_cnet_txt2img.py -------------------------------------------------------------------------------- /Paint3D/paint3d/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Paint3D/paint3d/config/train_config_paint3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3rd00d/ComfyUI-Paint3D-Nodes/HEAD/Paint3D/paint3d/config/train_config_paint3d.py -------------------------------------------------------------------------------- /Paint3D/paint3d/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3rd00d/ComfyUI-Paint3D-Nodes/HEAD/Paint3D/paint3d/dataset.py -------------------------------------------------------------------------------- /Paint3D/paint3d/models/mesh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3rd00d/ComfyUI-Paint3D-Nodes/HEAD/Paint3D/paint3d/models/mesh.py -------------------------------------------------------------------------------- /Paint3D/paint3d/models/render.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3rd00d/ComfyUI-Paint3D-Nodes/HEAD/Paint3D/paint3d/models/render.py -------------------------------------------------------------------------------- /Paint3D/paint3d/models/textured_mesh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3rd00d/ComfyUI-Paint3D-Nodes/HEAD/Paint3D/paint3d/models/textured_mesh.py -------------------------------------------------------------------------------- /Paint3D/paint3d/post_process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3rd00d/ComfyUI-Paint3D-Nodes/HEAD/Paint3D/paint3d/post_process.py -------------------------------------------------------------------------------- /Paint3D/paint3d/trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3rd00d/ComfyUI-Paint3D-Nodes/HEAD/Paint3D/paint3d/trainer.py -------------------------------------------------------------------------------- /Paint3D/paint3d/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3rd00d/ComfyUI-Paint3D-Nodes/HEAD/Paint3D/paint3d/utils.py -------------------------------------------------------------------------------- /Paint3D/tools/convert_original_stable_diffusion_to_diffusers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3rd00d/ComfyUI-Paint3D-Nodes/HEAD/Paint3D/tools/convert_original_stable_diffusion_to_diffusers.py -------------------------------------------------------------------------------- /Paint3D/tools/idx_split/idx_all.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3rd00d/ComfyUI-Paint3D-Nodes/HEAD/Paint3D/tools/idx_split/idx_all.txt -------------------------------------------------------------------------------- /Paint3D/tools/idx_split/idx_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3rd00d/ComfyUI-Paint3D-Nodes/HEAD/Paint3D/tools/idx_split/idx_test.txt -------------------------------------------------------------------------------- /Paint3D/tools/idx_split/idx_train.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3rd00d/ComfyUI-Paint3D-Nodes/HEAD/Paint3D/tools/idx_split/idx_train.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3rd00d/ComfyUI-Paint3D-Nodes/HEAD/README.md -------------------------------------------------------------------------------- /Suzanne_monkey/Suzanne_monkey.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3rd00d/ComfyUI-Paint3D-Nodes/HEAD/Suzanne_monkey/Suzanne_monkey.obj -------------------------------------------------------------------------------- /Suzanne_monkey/material.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3rd00d/ComfyUI-Paint3D-Nodes/HEAD/Suzanne_monkey/material.mtl -------------------------------------------------------------------------------- /Suzanne_monkey/material_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3rd00d/ComfyUI-Paint3D-Nodes/HEAD/Suzanne_monkey/material_0.png -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3rd00d/ComfyUI-Paint3D-Nodes/HEAD/__init__.py -------------------------------------------------------------------------------- /nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3rd00d/ComfyUI-Paint3D-Nodes/HEAD/nodes.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3rd00d/ComfyUI-Paint3D-Nodes/HEAD/requirements.txt -------------------------------------------------------------------------------- /workflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/N3rd00d/ComfyUI-Paint3D-Nodes/HEAD/workflow.json --------------------------------------------------------------------------------