├── README.md ├── addon_config.mk ├── libs └── stable-diffusion │ ├── include │ └── stable-diffusion.h │ └── lib │ ├── Linux64 │ └── libstable-diffusion.so │ └── vs │ ├── stable-diffusion.dll │ └── stable-diffusion.lib ├── ofxStableDiffusionExample ├── Makefile ├── addons.make ├── bin │ └── data │ │ ├── models │ │ ├── controlnet │ │ │ └── .gitkeep │ │ ├── embeddings │ │ │ └── .gitkeep │ │ ├── esrgan │ │ │ └── .gitkeep │ │ ├── lora │ │ │ └── .gitkeep │ │ ├── photomaker │ │ │ └── .gitkeep │ │ ├── taesd │ │ │ └── .gitkeep │ │ └── vae │ │ │ └── .gitkeep │ │ └── photomaker_images │ │ └── newton_man │ │ ├── newton_0.jpg │ │ ├── newton_1.jpg │ │ ├── newton_2.png │ │ └── newton_3.jpg ├── config.make └── src │ ├── main.cpp │ ├── ofApp.cpp │ └── ofApp.h └── src ├── ofxStableDiffusion.cpp ├── ofxStableDiffusion.h ├── ofxStableDiffusionThread.cpp └── ofxStableDiffusionThread.h /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jonathhhan/ofxStableDiffusion/HEAD/README.md -------------------------------------------------------------------------------- /addon_config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jonathhhan/ofxStableDiffusion/HEAD/addon_config.mk -------------------------------------------------------------------------------- /libs/stable-diffusion/include/stable-diffusion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jonathhhan/ofxStableDiffusion/HEAD/libs/stable-diffusion/include/stable-diffusion.h -------------------------------------------------------------------------------- /libs/stable-diffusion/lib/Linux64/libstable-diffusion.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jonathhhan/ofxStableDiffusion/HEAD/libs/stable-diffusion/lib/Linux64/libstable-diffusion.so -------------------------------------------------------------------------------- /libs/stable-diffusion/lib/vs/stable-diffusion.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jonathhhan/ofxStableDiffusion/HEAD/libs/stable-diffusion/lib/vs/stable-diffusion.dll -------------------------------------------------------------------------------- /libs/stable-diffusion/lib/vs/stable-diffusion.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jonathhhan/ofxStableDiffusion/HEAD/libs/stable-diffusion/lib/vs/stable-diffusion.lib -------------------------------------------------------------------------------- /ofxStableDiffusionExample/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jonathhhan/ofxStableDiffusion/HEAD/ofxStableDiffusionExample/Makefile -------------------------------------------------------------------------------- /ofxStableDiffusionExample/addons.make: -------------------------------------------------------------------------------- 1 | ofxImGui 2 | ofxStableDiffusion 3 | -------------------------------------------------------------------------------- /ofxStableDiffusionExample/bin/data/models/controlnet/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /ofxStableDiffusionExample/bin/data/models/embeddings/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /ofxStableDiffusionExample/bin/data/models/esrgan/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /ofxStableDiffusionExample/bin/data/models/lora/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /ofxStableDiffusionExample/bin/data/models/photomaker/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /ofxStableDiffusionExample/bin/data/models/taesd/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /ofxStableDiffusionExample/bin/data/models/vae/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /ofxStableDiffusionExample/bin/data/photomaker_images/newton_man/newton_0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jonathhhan/ofxStableDiffusion/HEAD/ofxStableDiffusionExample/bin/data/photomaker_images/newton_man/newton_0.jpg -------------------------------------------------------------------------------- /ofxStableDiffusionExample/bin/data/photomaker_images/newton_man/newton_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jonathhhan/ofxStableDiffusion/HEAD/ofxStableDiffusionExample/bin/data/photomaker_images/newton_man/newton_1.jpg -------------------------------------------------------------------------------- /ofxStableDiffusionExample/bin/data/photomaker_images/newton_man/newton_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jonathhhan/ofxStableDiffusion/HEAD/ofxStableDiffusionExample/bin/data/photomaker_images/newton_man/newton_2.png -------------------------------------------------------------------------------- /ofxStableDiffusionExample/bin/data/photomaker_images/newton_man/newton_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jonathhhan/ofxStableDiffusion/HEAD/ofxStableDiffusionExample/bin/data/photomaker_images/newton_man/newton_3.jpg -------------------------------------------------------------------------------- /ofxStableDiffusionExample/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jonathhhan/ofxStableDiffusion/HEAD/ofxStableDiffusionExample/config.make -------------------------------------------------------------------------------- /ofxStableDiffusionExample/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jonathhhan/ofxStableDiffusion/HEAD/ofxStableDiffusionExample/src/main.cpp -------------------------------------------------------------------------------- /ofxStableDiffusionExample/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jonathhhan/ofxStableDiffusion/HEAD/ofxStableDiffusionExample/src/ofApp.cpp -------------------------------------------------------------------------------- /ofxStableDiffusionExample/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jonathhhan/ofxStableDiffusion/HEAD/ofxStableDiffusionExample/src/ofApp.h -------------------------------------------------------------------------------- /src/ofxStableDiffusion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jonathhhan/ofxStableDiffusion/HEAD/src/ofxStableDiffusion.cpp -------------------------------------------------------------------------------- /src/ofxStableDiffusion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jonathhhan/ofxStableDiffusion/HEAD/src/ofxStableDiffusion.h -------------------------------------------------------------------------------- /src/ofxStableDiffusionThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jonathhhan/ofxStableDiffusion/HEAD/src/ofxStableDiffusionThread.cpp -------------------------------------------------------------------------------- /src/ofxStableDiffusionThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jonathhhan/ofxStableDiffusion/HEAD/src/ofxStableDiffusionThread.h --------------------------------------------------------------------------------