├── README.md ├── evaluation ├── FID_KID.ipynb ├── LPIPS.ipynb ├── README.md └── segmentation │ ├── run_segmentation.ipynb │ └── transforms.py ├── inference ├── README.md ├── api_inference_controlnet11_tissues_01_49.ipynb ├── api_inference_controlnet11_tissues_25_66.ipynb └── api_inference_controlnet11_tissues_52_56.ipynb ├── preprocessing ├── README.md ├── Texture-Synthesis │ ├── README.md │ ├── tex_01_49 │ │ ├── 01_a.png │ │ ├── 01_b.png │ │ ├── 02_a.png │ │ ├── 02_b.png │ │ ├── 04_a.png │ │ ├── 04_b.png │ │ ├── 10_a.png │ │ ├── 10_b.png │ │ ├── 12_a.png │ │ ├── 12_b.png │ │ ├── tex01_a.png │ │ ├── tex01_a_rand.png │ │ ├── tex01_b.png │ │ ├── tex01_b_rand.png │ │ ├── tex02_a.png │ │ ├── tex02_a_rand.png │ │ ├── tex02_b.png │ │ ├── tex02_b_rand.png │ │ ├── tex04_a.png │ │ ├── tex04_a_rand.png │ │ ├── tex04_b.png │ │ ├── tex04_b_rand.png │ │ ├── tex10_a.png │ │ ├── tex10_a_rand.png │ │ ├── tex10_b.png │ │ ├── tex10_b_rand.png │ │ ├── tex12_a.png │ │ ├── tex12_a_rand.png │ │ ├── tex12_b.png │ │ └── tex12_b_rand.png │ ├── tex_25_66 │ │ ├── 01_a.png │ │ ├── 01_b.png │ │ ├── 02_a.png │ │ ├── 02_b.png │ │ ├── 04_a.png │ │ ├── 04_b.png │ │ ├── 10_a.png │ │ ├── 10_b.png │ │ ├── 12_a.png │ │ ├── 12_b.png │ │ ├── tex01_a.png │ │ ├── tex01_a_rand.png │ │ ├── tex01_b.png │ │ ├── tex01_b_rand.png │ │ ├── tex02_a.png │ │ ├── tex02_a_rand.png │ │ ├── tex02_b.png │ │ ├── tex02_b_rand.png │ │ ├── tex04_a.png │ │ ├── tex04_a_rand.png │ │ ├── tex04_b.png │ │ ├── tex04_b_rand.png │ │ ├── tex10_a.png │ │ ├── tex10_a_rand.png │ │ ├── tex10_b.png │ │ ├── tex10_b_rand.png │ │ ├── tex12_a.png │ │ ├── tex12_a_rand.png │ │ ├── tex12_b.png │ │ └── tex12_b_rand.png │ ├── tex_52_56 │ │ ├── 01_a.png │ │ ├── 01_b.png │ │ ├── 02_a.png │ │ ├── 02_b.png │ │ ├── 04_a.png │ │ ├── 04_b.png │ │ ├── 10_a.png │ │ ├── 10_b.png │ │ ├── 12_a.png │ │ ├── 12_b.png │ │ ├── tex01_a.png │ │ ├── tex01_a_rand.png │ │ ├── tex01_b.png │ │ ├── tex01_b_rand.png │ │ ├── tex02_a.png │ │ ├── tex02_a_rand.png │ │ ├── tex02_b.png │ │ ├── tex02_b_old.png │ │ ├── tex02_b_rand.png │ │ ├── tex02_b_rand_old.png │ │ ├── tex04_a.png │ │ ├── tex04_a_rand.png │ │ ├── tex04_b.png │ │ ├── tex04_b_rand.png │ │ ├── tex10_a.png │ │ ├── tex10_a_rand.png │ │ ├── tex10_b.png │ │ ├── tex10_b_rand.png │ │ ├── tex12_a.png │ │ ├── tex12_a_rand.png │ │ ├── tex12_b.png │ │ └── tex12_b_rand.png │ └── texture_synthesis.py ├── add_textures.ipynb └── prepare_segmentation_maps.ipynb ├── requirements.txt ├── sim2real_asset.png └── training ├── README.md ├── convert_diffusers_to_sd.py ├── train_dreambooth.py └── train_dreambooth_commands.ipynb /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SanoScience/sim2real_with_Stable_Diffusion/HEAD/README.md -------------------------------------------------------------------------------- /evaluation/FID_KID.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SanoScience/sim2real_with_Stable_Diffusion/HEAD/evaluation/FID_KID.ipynb -------------------------------------------------------------------------------- /evaluation/LPIPS.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SanoScience/sim2real_with_Stable_Diffusion/HEAD/evaluation/LPIPS.ipynb -------------------------------------------------------------------------------- /evaluation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SanoScience/sim2real_with_Stable_Diffusion/HEAD/evaluation/README.md -------------------------------------------------------------------------------- /evaluation/segmentation/run_segmentation.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SanoScience/sim2real_with_Stable_Diffusion/HEAD/evaluation/segmentation/run_segmentation.ipynb -------------------------------------------------------------------------------- /evaluation/segmentation/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SanoScience/sim2real_with_Stable_Diffusion/HEAD/evaluation/segmentation/transforms.py -------------------------------------------------------------------------------- /inference/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SanoScience/sim2real_with_Stable_Diffusion/HEAD/inference/README.md -------------------------------------------------------------------------------- /inference/api_inference_controlnet11_tissues_01_49.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SanoScience/sim2real_with_Stable_Diffusion/HEAD/inference/api_inference_controlnet11_tissues_01_49.ipynb -------------------------------------------------------------------------------- /inference/api_inference_controlnet11_tissues_25_66.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SanoScience/sim2real_with_Stable_Diffusion/HEAD/inference/api_inference_controlnet11_tissues_25_66.ipynb -------------------------------------------------------------------------------- /inference/api_inference_controlnet11_tissues_52_56.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SanoScience/sim2real_with_Stable_Diffusion/HEAD/inference/api_inference_controlnet11_tissues_52_56.ipynb -------------------------------------------------------------------------------- /preprocessing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SanoScience/sim2real_with_Stable_Diffusion/HEAD/preprocessing/README.md -------------------------------------------------------------------------------- /preprocessing/Texture-Synthesis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SanoScience/sim2real_with_Stable_Diffusion/HEAD/preprocessing/Texture-Synthesis/README.md -------------------------------------------------------------------------------- /preprocessing/Texture-Synthesis/tex_01_49/01_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SanoScience/sim2real_with_Stable_Diffusion/HEAD/preprocessing/Texture-Synthesis/tex_01_49/01_a.png -------------------------------------------------------------------------------- /preprocessing/Texture-Synthesis/tex_01_49/01_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SanoScience/sim2real_with_Stable_Diffusion/HEAD/preprocessing/Texture-Synthesis/tex_01_49/01_b.png -------------------------------------------------------------------------------- /preprocessing/Texture-Synthesis/tex_01_49/02_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SanoScience/sim2real_with_Stable_Diffusion/HEAD/preprocessing/Texture-Synthesis/tex_01_49/02_a.png -------------------------------------------------------------------------------- /preprocessing/Texture-Synthesis/tex_01_49/02_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SanoScience/sim2real_with_Stable_Diffusion/HEAD/preprocessing/Texture-Synthesis/tex_01_49/02_b.png -------------------------------------------------------------------------------- /preprocessing/Texture-Synthesis/tex_01_49/04_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SanoScience/sim2real_with_Stable_Diffusion/HEAD/preprocessing/Texture-Synthesis/tex_01_49/04_a.png -------------------------------------------------------------------------------- /preprocessing/Texture-Synthesis/tex_01_49/04_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SanoScience/sim2real_with_Stable_Diffusion/HEAD/preprocessing/Texture-Synthesis/tex_01_49/04_b.png -------------------------------------------------------------------------------- /preprocessing/Texture-Synthesis/tex_01_49/10_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SanoScience/sim2real_with_Stable_Diffusion/HEAD/preprocessing/Texture-Synthesis/tex_01_49/10_a.png -------------------------------------------------------------------------------- /preprocessing/Texture-Synthesis/tex_01_49/10_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SanoScience/sim2real_with_Stable_Diffusion/HEAD/preprocessing/Texture-Synthesis/tex_01_49/10_b.png -------------------------------------------------------------------------------- /preprocessing/Texture-Synthesis/tex_01_49/12_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SanoScience/sim2real_with_Stable_Diffusion/HEAD/preprocessing/Texture-Synthesis/tex_01_49/12_a.png -------------------------------------------------------------------------------- /preprocessing/Texture-Synthesis/tex_01_49/12_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SanoScience/sim2real_with_Stable_Diffusion/HEAD/preprocessing/Texture-Synthesis/tex_01_49/12_b.png -------------------------------------------------------------------------------- /preprocessing/Texture-Synthesis/tex_01_49/tex01_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SanoScience/sim2real_with_Stable_Diffusion/HEAD/preprocessing/Texture-Synthesis/tex_01_49/tex01_a.png -------------------------------------------------------------------------------- /preprocessing/Texture-Synthesis/tex_01_49/tex01_a_rand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SanoScience/sim2real_with_Stable_Diffusion/HEAD/preprocessing/Texture-Synthesis/tex_01_49/tex01_a_rand.png -------------------------------------------------------------------------------- /preprocessing/Texture-Synthesis/tex_01_49/tex01_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SanoScience/sim2real_with_Stable_Diffusion/HEAD/preprocessing/Texture-Synthesis/tex_01_49/tex01_b.png -------------------------------------------------------------------------------- /preprocessing/Texture-Synthesis/tex_01_49/tex01_b_rand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SanoScience/sim2real_with_Stable_Diffusion/HEAD/preprocessing/Texture-Synthesis/tex_01_49/tex01_b_rand.png -------------------------------------------------------------------------------- /preprocessing/Texture-Synthesis/tex_01_49/tex02_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SanoScience/sim2real_with_Stable_Diffusion/HEAD/preprocessing/Texture-Synthesis/tex_01_49/tex02_a.png -------------------------------------------------------------------------------- /preprocessing/Texture-Synthesis/tex_01_49/tex02_a_rand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SanoScience/sim2real_with_Stable_Diffusion/HEAD/preprocessing/Texture-Synthesis/tex_01_49/tex02_a_rand.png -------------------------------------------------------------------------------- /preprocessing/Texture-Synthesis/tex_01_49/tex02_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SanoScience/sim2real_with_Stable_Diffusion/HEAD/preprocessing/Texture-Synthesis/tex_01_49/tex02_b.png -------------------------------------------------------------------------------- /preprocessing/Texture-Synthesis/tex_01_49/tex02_b_rand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SanoScience/sim2real_with_Stable_Diffusion/HEAD/preprocessing/Texture-Synthesis/tex_01_49/tex02_b_rand.png -------------------------------------------------------------------------------- /preprocessing/Texture-Synthesis/tex_01_49/tex04_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SanoScience/sim2real_with_Stable_Diffusion/HEAD/preprocessing/Texture-Synthesis/tex_01_49/tex04_a.png -------------------------------------------------------------------------------- /preprocessing/Texture-Synthesis/tex_01_49/tex04_a_rand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SanoScience/sim2real_with_Stable_Diffusion/HEAD/preprocessing/Texture-Synthesis/tex_01_49/tex04_a_rand.png -------------------------------------------------------------------------------- /preprocessing/Texture-Synthesis/tex_01_49/tex04_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SanoScience/sim2real_with_Stable_Diffusion/HEAD/preprocessing/Texture-Synthesis/tex_01_49/tex04_b.png -------------------------------------------------------------------------------- /preprocessing/Texture-Synthesis/tex_01_49/tex04_b_rand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SanoScience/sim2real_with_Stable_Diffusion/HEAD/preprocessing/Texture-Synthesis/tex_01_49/tex04_b_rand.png -------------------------------------------------------------------------------- /preprocessing/Texture-Synthesis/tex_01_49/tex10_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SanoScience/sim2real_with_Stable_Diffusion/HEAD/preprocessing/Texture-Synthesis/tex_01_49/tex10_a.png -------------------------------------------------------------------------------- /preprocessing/Texture-Synthesis/tex_01_49/tex10_a_rand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SanoScience/sim2real_with_Stable_Diffusion/HEAD/preprocessing/Texture-Synthesis/tex_01_49/tex10_a_rand.png -------------------------------------------------------------------------------- /preprocessing/Texture-Synthesis/tex_01_49/tex10_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SanoScience/sim2real_with_Stable_Diffusion/HEAD/preprocessing/Texture-Synthesis/tex_01_49/tex10_b.png -------------------------------------------------------------------------------- /preprocessing/Texture-Synthesis/tex_01_49/tex10_b_rand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SanoScience/sim2real_with_Stable_Diffusion/HEAD/preprocessing/Texture-Synthesis/tex_01_49/tex10_b_rand.png -------------------------------------------------------------------------------- /preprocessing/Texture-Synthesis/tex_01_49/tex12_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SanoScience/sim2real_with_Stable_Diffusion/HEAD/preprocessing/Texture-Synthesis/tex_01_49/tex12_a.png -------------------------------------------------------------------------------- /preprocessing/Texture-Synthesis/tex_01_49/tex12_a_rand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SanoScience/sim2real_with_Stable_Diffusion/HEAD/preprocessing/Texture-Synthesis/tex_01_49/tex12_a_rand.png -------------------------------------------------------------------------------- /preprocessing/Texture-Synthesis/tex_01_49/tex12_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SanoScience/sim2real_with_Stable_Diffusion/HEAD/preprocessing/Texture-Synthesis/tex_01_49/tex12_b.png -------------------------------------------------------------------------------- /preprocessing/Texture-Synthesis/tex_01_49/tex12_b_rand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SanoScience/sim2real_with_Stable_Diffusion/HEAD/preprocessing/Texture-Synthesis/tex_01_49/tex12_b_rand.png -------------------------------------------------------------------------------- /preprocessing/Texture-Synthesis/tex_25_66/01_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SanoScience/sim2real_with_Stable_Diffusion/HEAD/preprocessing/Texture-Synthesis/tex_25_66/01_a.png -------------------------------------------------------------------------------- /preprocessing/Texture-Synthesis/tex_25_66/01_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SanoScience/sim2real_with_Stable_Diffusion/HEAD/preprocessing/Texture-Synthesis/tex_25_66/01_b.png -------------------------------------------------------------------------------- /preprocessing/Texture-Synthesis/tex_25_66/02_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SanoScience/sim2real_with_Stable_Diffusion/HEAD/preprocessing/Texture-Synthesis/tex_25_66/02_a.png -------------------------------------------------------------------------------- /preprocessing/Texture-Synthesis/tex_25_66/02_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SanoScience/sim2real_with_Stable_Diffusion/HEAD/preprocessing/Texture-Synthesis/tex_25_66/02_b.png -------------------------------------------------------------------------------- /preprocessing/Texture-Synthesis/tex_25_66/04_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SanoScience/sim2real_with_Stable_Diffusion/HEAD/preprocessing/Texture-Synthesis/tex_25_66/04_a.png -------------------------------------------------------------------------------- /preprocessing/Texture-Synthesis/tex_25_66/04_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SanoScience/sim2real_with_Stable_Diffusion/HEAD/preprocessing/Texture-Synthesis/tex_25_66/04_b.png -------------------------------------------------------------------------------- /preprocessing/Texture-Synthesis/tex_25_66/10_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SanoScience/sim2real_with_Stable_Diffusion/HEAD/preprocessing/Texture-Synthesis/tex_25_66/10_a.png -------------------------------------------------------------------------------- /preprocessing/Texture-Synthesis/tex_25_66/10_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SanoScience/sim2real_with_Stable_Diffusion/HEAD/preprocessing/Texture-Synthesis/tex_25_66/10_b.png -------------------------------------------------------------------------------- /preprocessing/Texture-Synthesis/tex_25_66/12_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SanoScience/sim2real_with_Stable_Diffusion/HEAD/preprocessing/Texture-Synthesis/tex_25_66/12_a.png -------------------------------------------------------------------------------- /preprocessing/Texture-Synthesis/tex_25_66/12_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SanoScience/sim2real_with_Stable_Diffusion/HEAD/preprocessing/Texture-Synthesis/tex_25_66/12_b.png -------------------------------------------------------------------------------- /preprocessing/Texture-Synthesis/tex_25_66/tex01_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SanoScience/sim2real_with_Stable_Diffusion/HEAD/preprocessing/Texture-Synthesis/tex_25_66/tex01_a.png -------------------------------------------------------------------------------- /preprocessing/Texture-Synthesis/tex_25_66/tex01_a_rand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SanoScience/sim2real_with_Stable_Diffusion/HEAD/preprocessing/Texture-Synthesis/tex_25_66/tex01_a_rand.png -------------------------------------------------------------------------------- /preprocessing/Texture-Synthesis/tex_25_66/tex01_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SanoScience/sim2real_with_Stable_Diffusion/HEAD/preprocessing/Texture-Synthesis/tex_25_66/tex01_b.png -------------------------------------------------------------------------------- /preprocessing/Texture-Synthesis/tex_25_66/tex01_b_rand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SanoScience/sim2real_with_Stable_Diffusion/HEAD/preprocessing/Texture-Synthesis/tex_25_66/tex01_b_rand.png -------------------------------------------------------------------------------- /preprocessing/Texture-Synthesis/tex_25_66/tex02_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SanoScience/sim2real_with_Stable_Diffusion/HEAD/preprocessing/Texture-Synthesis/tex_25_66/tex02_a.png -------------------------------------------------------------------------------- /preprocessing/Texture-Synthesis/tex_25_66/tex02_a_rand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SanoScience/sim2real_with_Stable_Diffusion/HEAD/preprocessing/Texture-Synthesis/tex_25_66/tex02_a_rand.png -------------------------------------------------------------------------------- /preprocessing/Texture-Synthesis/tex_25_66/tex02_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SanoScience/sim2real_with_Stable_Diffusion/HEAD/preprocessing/Texture-Synthesis/tex_25_66/tex02_b.png -------------------------------------------------------------------------------- /preprocessing/Texture-Synthesis/tex_25_66/tex02_b_rand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SanoScience/sim2real_with_Stable_Diffusion/HEAD/preprocessing/Texture-Synthesis/tex_25_66/tex02_b_rand.png -------------------------------------------------------------------------------- /preprocessing/Texture-Synthesis/tex_25_66/tex04_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SanoScience/sim2real_with_Stable_Diffusion/HEAD/preprocessing/Texture-Synthesis/tex_25_66/tex04_a.png -------------------------------------------------------------------------------- /preprocessing/Texture-Synthesis/tex_25_66/tex04_a_rand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SanoScience/sim2real_with_Stable_Diffusion/HEAD/preprocessing/Texture-Synthesis/tex_25_66/tex04_a_rand.png -------------------------------------------------------------------------------- /preprocessing/Texture-Synthesis/tex_25_66/tex04_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SanoScience/sim2real_with_Stable_Diffusion/HEAD/preprocessing/Texture-Synthesis/tex_25_66/tex04_b.png -------------------------------------------------------------------------------- /preprocessing/Texture-Synthesis/tex_25_66/tex04_b_rand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SanoScience/sim2real_with_Stable_Diffusion/HEAD/preprocessing/Texture-Synthesis/tex_25_66/tex04_b_rand.png -------------------------------------------------------------------------------- /preprocessing/Texture-Synthesis/tex_25_66/tex10_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SanoScience/sim2real_with_Stable_Diffusion/HEAD/preprocessing/Texture-Synthesis/tex_25_66/tex10_a.png -------------------------------------------------------------------------------- /preprocessing/Texture-Synthesis/tex_25_66/tex10_a_rand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SanoScience/sim2real_with_Stable_Diffusion/HEAD/preprocessing/Texture-Synthesis/tex_25_66/tex10_a_rand.png -------------------------------------------------------------------------------- /preprocessing/Texture-Synthesis/tex_25_66/tex10_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SanoScience/sim2real_with_Stable_Diffusion/HEAD/preprocessing/Texture-Synthesis/tex_25_66/tex10_b.png -------------------------------------------------------------------------------- /preprocessing/Texture-Synthesis/tex_25_66/tex10_b_rand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SanoScience/sim2real_with_Stable_Diffusion/HEAD/preprocessing/Texture-Synthesis/tex_25_66/tex10_b_rand.png -------------------------------------------------------------------------------- /preprocessing/Texture-Synthesis/tex_25_66/tex12_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SanoScience/sim2real_with_Stable_Diffusion/HEAD/preprocessing/Texture-Synthesis/tex_25_66/tex12_a.png -------------------------------------------------------------------------------- /preprocessing/Texture-Synthesis/tex_25_66/tex12_a_rand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SanoScience/sim2real_with_Stable_Diffusion/HEAD/preprocessing/Texture-Synthesis/tex_25_66/tex12_a_rand.png -------------------------------------------------------------------------------- /preprocessing/Texture-Synthesis/tex_25_66/tex12_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SanoScience/sim2real_with_Stable_Diffusion/HEAD/preprocessing/Texture-Synthesis/tex_25_66/tex12_b.png -------------------------------------------------------------------------------- /preprocessing/Texture-Synthesis/tex_25_66/tex12_b_rand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SanoScience/sim2real_with_Stable_Diffusion/HEAD/preprocessing/Texture-Synthesis/tex_25_66/tex12_b_rand.png -------------------------------------------------------------------------------- /preprocessing/Texture-Synthesis/tex_52_56/01_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SanoScience/sim2real_with_Stable_Diffusion/HEAD/preprocessing/Texture-Synthesis/tex_52_56/01_a.png -------------------------------------------------------------------------------- /preprocessing/Texture-Synthesis/tex_52_56/01_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SanoScience/sim2real_with_Stable_Diffusion/HEAD/preprocessing/Texture-Synthesis/tex_52_56/01_b.png -------------------------------------------------------------------------------- /preprocessing/Texture-Synthesis/tex_52_56/02_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SanoScience/sim2real_with_Stable_Diffusion/HEAD/preprocessing/Texture-Synthesis/tex_52_56/02_a.png -------------------------------------------------------------------------------- /preprocessing/Texture-Synthesis/tex_52_56/02_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SanoScience/sim2real_with_Stable_Diffusion/HEAD/preprocessing/Texture-Synthesis/tex_52_56/02_b.png -------------------------------------------------------------------------------- /preprocessing/Texture-Synthesis/tex_52_56/04_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SanoScience/sim2real_with_Stable_Diffusion/HEAD/preprocessing/Texture-Synthesis/tex_52_56/04_a.png -------------------------------------------------------------------------------- /preprocessing/Texture-Synthesis/tex_52_56/04_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SanoScience/sim2real_with_Stable_Diffusion/HEAD/preprocessing/Texture-Synthesis/tex_52_56/04_b.png -------------------------------------------------------------------------------- /preprocessing/Texture-Synthesis/tex_52_56/10_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SanoScience/sim2real_with_Stable_Diffusion/HEAD/preprocessing/Texture-Synthesis/tex_52_56/10_a.png -------------------------------------------------------------------------------- /preprocessing/Texture-Synthesis/tex_52_56/10_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SanoScience/sim2real_with_Stable_Diffusion/HEAD/preprocessing/Texture-Synthesis/tex_52_56/10_b.png -------------------------------------------------------------------------------- /preprocessing/Texture-Synthesis/tex_52_56/12_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SanoScience/sim2real_with_Stable_Diffusion/HEAD/preprocessing/Texture-Synthesis/tex_52_56/12_a.png -------------------------------------------------------------------------------- /preprocessing/Texture-Synthesis/tex_52_56/12_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SanoScience/sim2real_with_Stable_Diffusion/HEAD/preprocessing/Texture-Synthesis/tex_52_56/12_b.png -------------------------------------------------------------------------------- /preprocessing/Texture-Synthesis/tex_52_56/tex01_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SanoScience/sim2real_with_Stable_Diffusion/HEAD/preprocessing/Texture-Synthesis/tex_52_56/tex01_a.png -------------------------------------------------------------------------------- /preprocessing/Texture-Synthesis/tex_52_56/tex01_a_rand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SanoScience/sim2real_with_Stable_Diffusion/HEAD/preprocessing/Texture-Synthesis/tex_52_56/tex01_a_rand.png -------------------------------------------------------------------------------- /preprocessing/Texture-Synthesis/tex_52_56/tex01_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SanoScience/sim2real_with_Stable_Diffusion/HEAD/preprocessing/Texture-Synthesis/tex_52_56/tex01_b.png -------------------------------------------------------------------------------- /preprocessing/Texture-Synthesis/tex_52_56/tex01_b_rand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SanoScience/sim2real_with_Stable_Diffusion/HEAD/preprocessing/Texture-Synthesis/tex_52_56/tex01_b_rand.png -------------------------------------------------------------------------------- /preprocessing/Texture-Synthesis/tex_52_56/tex02_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SanoScience/sim2real_with_Stable_Diffusion/HEAD/preprocessing/Texture-Synthesis/tex_52_56/tex02_a.png -------------------------------------------------------------------------------- /preprocessing/Texture-Synthesis/tex_52_56/tex02_a_rand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SanoScience/sim2real_with_Stable_Diffusion/HEAD/preprocessing/Texture-Synthesis/tex_52_56/tex02_a_rand.png -------------------------------------------------------------------------------- /preprocessing/Texture-Synthesis/tex_52_56/tex02_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SanoScience/sim2real_with_Stable_Diffusion/HEAD/preprocessing/Texture-Synthesis/tex_52_56/tex02_b.png -------------------------------------------------------------------------------- /preprocessing/Texture-Synthesis/tex_52_56/tex02_b_old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SanoScience/sim2real_with_Stable_Diffusion/HEAD/preprocessing/Texture-Synthesis/tex_52_56/tex02_b_old.png -------------------------------------------------------------------------------- /preprocessing/Texture-Synthesis/tex_52_56/tex02_b_rand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SanoScience/sim2real_with_Stable_Diffusion/HEAD/preprocessing/Texture-Synthesis/tex_52_56/tex02_b_rand.png -------------------------------------------------------------------------------- /preprocessing/Texture-Synthesis/tex_52_56/tex02_b_rand_old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SanoScience/sim2real_with_Stable_Diffusion/HEAD/preprocessing/Texture-Synthesis/tex_52_56/tex02_b_rand_old.png -------------------------------------------------------------------------------- /preprocessing/Texture-Synthesis/tex_52_56/tex04_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SanoScience/sim2real_with_Stable_Diffusion/HEAD/preprocessing/Texture-Synthesis/tex_52_56/tex04_a.png -------------------------------------------------------------------------------- /preprocessing/Texture-Synthesis/tex_52_56/tex04_a_rand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SanoScience/sim2real_with_Stable_Diffusion/HEAD/preprocessing/Texture-Synthesis/tex_52_56/tex04_a_rand.png -------------------------------------------------------------------------------- /preprocessing/Texture-Synthesis/tex_52_56/tex04_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SanoScience/sim2real_with_Stable_Diffusion/HEAD/preprocessing/Texture-Synthesis/tex_52_56/tex04_b.png -------------------------------------------------------------------------------- /preprocessing/Texture-Synthesis/tex_52_56/tex04_b_rand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SanoScience/sim2real_with_Stable_Diffusion/HEAD/preprocessing/Texture-Synthesis/tex_52_56/tex04_b_rand.png -------------------------------------------------------------------------------- /preprocessing/Texture-Synthesis/tex_52_56/tex10_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SanoScience/sim2real_with_Stable_Diffusion/HEAD/preprocessing/Texture-Synthesis/tex_52_56/tex10_a.png -------------------------------------------------------------------------------- /preprocessing/Texture-Synthesis/tex_52_56/tex10_a_rand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SanoScience/sim2real_with_Stable_Diffusion/HEAD/preprocessing/Texture-Synthesis/tex_52_56/tex10_a_rand.png -------------------------------------------------------------------------------- /preprocessing/Texture-Synthesis/tex_52_56/tex10_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SanoScience/sim2real_with_Stable_Diffusion/HEAD/preprocessing/Texture-Synthesis/tex_52_56/tex10_b.png -------------------------------------------------------------------------------- /preprocessing/Texture-Synthesis/tex_52_56/tex10_b_rand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SanoScience/sim2real_with_Stable_Diffusion/HEAD/preprocessing/Texture-Synthesis/tex_52_56/tex10_b_rand.png -------------------------------------------------------------------------------- /preprocessing/Texture-Synthesis/tex_52_56/tex12_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SanoScience/sim2real_with_Stable_Diffusion/HEAD/preprocessing/Texture-Synthesis/tex_52_56/tex12_a.png -------------------------------------------------------------------------------- /preprocessing/Texture-Synthesis/tex_52_56/tex12_a_rand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SanoScience/sim2real_with_Stable_Diffusion/HEAD/preprocessing/Texture-Synthesis/tex_52_56/tex12_a_rand.png -------------------------------------------------------------------------------- /preprocessing/Texture-Synthesis/tex_52_56/tex12_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SanoScience/sim2real_with_Stable_Diffusion/HEAD/preprocessing/Texture-Synthesis/tex_52_56/tex12_b.png -------------------------------------------------------------------------------- /preprocessing/Texture-Synthesis/tex_52_56/tex12_b_rand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SanoScience/sim2real_with_Stable_Diffusion/HEAD/preprocessing/Texture-Synthesis/tex_52_56/tex12_b_rand.png -------------------------------------------------------------------------------- /preprocessing/Texture-Synthesis/texture_synthesis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SanoScience/sim2real_with_Stable_Diffusion/HEAD/preprocessing/Texture-Synthesis/texture_synthesis.py -------------------------------------------------------------------------------- /preprocessing/add_textures.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SanoScience/sim2real_with_Stable_Diffusion/HEAD/preprocessing/add_textures.ipynb -------------------------------------------------------------------------------- /preprocessing/prepare_segmentation_maps.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SanoScience/sim2real_with_Stable_Diffusion/HEAD/preprocessing/prepare_segmentation_maps.ipynb -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | # to be added 2 | -------------------------------------------------------------------------------- /sim2real_asset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SanoScience/sim2real_with_Stable_Diffusion/HEAD/sim2real_asset.png -------------------------------------------------------------------------------- /training/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SanoScience/sim2real_with_Stable_Diffusion/HEAD/training/README.md -------------------------------------------------------------------------------- /training/convert_diffusers_to_sd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SanoScience/sim2real_with_Stable_Diffusion/HEAD/training/convert_diffusers_to_sd.py -------------------------------------------------------------------------------- /training/train_dreambooth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SanoScience/sim2real_with_Stable_Diffusion/HEAD/training/train_dreambooth.py -------------------------------------------------------------------------------- /training/train_dreambooth_commands.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SanoScience/sim2real_with_Stable_Diffusion/HEAD/training/train_dreambooth_commands.ipynb --------------------------------------------------------------------------------