├── .github └── workflows │ └── publish.yml ├── .gitignore ├── README.md ├── __init__.py ├── assets └── rgbx24_teaser.png ├── download_model.bat ├── pyproject.toml ├── requirements.txt ├── rgb2x ├── example │ └── Castlereagh_corridor_photo.png ├── gradio_demo_rgb2x.py ├── load_image.py └── pipeline_rgb2x.py ├── rgbx.py ├── x2rgb ├── example │ ├── kitchen-albedo.png │ ├── kitchen-irradiance.png │ ├── kitchen-metallic.png │ ├── kitchen-normal.png │ ├── kitchen-ref.png │ └── kitchen-roughness.png ├── gradio_demo_x2rgb.py ├── load_image.py └── pipeline_x2rgb.py └── x2rgb_inpainting ├── gradio_demo_x2rgb_inpainting.py ├── load_image.py └── pipeline_x2rgb_inpainting.py /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toyxyz/ComfyUI_rgbx_Wrapper/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode 2 | .env 3 | .dev 4 | __pycache__ 5 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toyxyz/ComfyUI_rgbx_Wrapper/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toyxyz/ComfyUI_rgbx_Wrapper/HEAD/__init__.py -------------------------------------------------------------------------------- /assets/rgbx24_teaser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toyxyz/ComfyUI_rgbx_Wrapper/HEAD/assets/rgbx24_teaser.png -------------------------------------------------------------------------------- /download_model.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toyxyz/ComfyUI_rgbx_Wrapper/HEAD/download_model.bat -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toyxyz/ComfyUI_rgbx_Wrapper/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toyxyz/ComfyUI_rgbx_Wrapper/HEAD/requirements.txt -------------------------------------------------------------------------------- /rgb2x/example/Castlereagh_corridor_photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toyxyz/ComfyUI_rgbx_Wrapper/HEAD/rgb2x/example/Castlereagh_corridor_photo.png -------------------------------------------------------------------------------- /rgb2x/gradio_demo_rgb2x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toyxyz/ComfyUI_rgbx_Wrapper/HEAD/rgb2x/gradio_demo_rgb2x.py -------------------------------------------------------------------------------- /rgb2x/load_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toyxyz/ComfyUI_rgbx_Wrapper/HEAD/rgb2x/load_image.py -------------------------------------------------------------------------------- /rgb2x/pipeline_rgb2x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toyxyz/ComfyUI_rgbx_Wrapper/HEAD/rgb2x/pipeline_rgb2x.py -------------------------------------------------------------------------------- /rgbx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toyxyz/ComfyUI_rgbx_Wrapper/HEAD/rgbx.py -------------------------------------------------------------------------------- /x2rgb/example/kitchen-albedo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toyxyz/ComfyUI_rgbx_Wrapper/HEAD/x2rgb/example/kitchen-albedo.png -------------------------------------------------------------------------------- /x2rgb/example/kitchen-irradiance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toyxyz/ComfyUI_rgbx_Wrapper/HEAD/x2rgb/example/kitchen-irradiance.png -------------------------------------------------------------------------------- /x2rgb/example/kitchen-metallic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toyxyz/ComfyUI_rgbx_Wrapper/HEAD/x2rgb/example/kitchen-metallic.png -------------------------------------------------------------------------------- /x2rgb/example/kitchen-normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toyxyz/ComfyUI_rgbx_Wrapper/HEAD/x2rgb/example/kitchen-normal.png -------------------------------------------------------------------------------- /x2rgb/example/kitchen-ref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toyxyz/ComfyUI_rgbx_Wrapper/HEAD/x2rgb/example/kitchen-ref.png -------------------------------------------------------------------------------- /x2rgb/example/kitchen-roughness.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toyxyz/ComfyUI_rgbx_Wrapper/HEAD/x2rgb/example/kitchen-roughness.png -------------------------------------------------------------------------------- /x2rgb/gradio_demo_x2rgb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toyxyz/ComfyUI_rgbx_Wrapper/HEAD/x2rgb/gradio_demo_x2rgb.py -------------------------------------------------------------------------------- /x2rgb/load_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toyxyz/ComfyUI_rgbx_Wrapper/HEAD/x2rgb/load_image.py -------------------------------------------------------------------------------- /x2rgb/pipeline_x2rgb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toyxyz/ComfyUI_rgbx_Wrapper/HEAD/x2rgb/pipeline_x2rgb.py -------------------------------------------------------------------------------- /x2rgb_inpainting/gradio_demo_x2rgb_inpainting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toyxyz/ComfyUI_rgbx_Wrapper/HEAD/x2rgb_inpainting/gradio_demo_x2rgb_inpainting.py -------------------------------------------------------------------------------- /x2rgb_inpainting/load_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toyxyz/ComfyUI_rgbx_Wrapper/HEAD/x2rgb_inpainting/load_image.py -------------------------------------------------------------------------------- /x2rgb_inpainting/pipeline_x2rgb_inpainting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/toyxyz/ComfyUI_rgbx_Wrapper/HEAD/x2rgb_inpainting/pipeline_x2rgb_inpainting.py --------------------------------------------------------------------------------