diff --git a/README.md b/README.md index 3d70cfa..bc38662 100644 --- a/README.md +++ b/README.md @@ -121,11 +121,15 @@ imagine --tile-x -w 1024 -h 512 "360 degree equirectangular panorama photograph ### Image-to-Image +Use depth maps for amazing "translations" of existing images. + ```bash ->> imagine "portrait of a smiling lady. oil painting" --init-image girl_with_a_pearl_earring.jpg +>> imagine --model SD-2.0-depth --init-image girl_with_a_pearl_earring_large.jpg --init-image-strength 0.05 "professional headshot photo of a woman with a pearl earring" -r 4 -w 1024 -h 1024 --steps 50 ``` ➡️ - + + + ### Prompt Expansion You can use `{}` to randomly pull values from lists. A list of values separated by `|` @@ -237,6 +241,7 @@ docker run -it --gpus all -v $HOME/.cache/huggingface:/root/.cache/huggingface - ## ChangeLog **7.3.0** - feature: 🎉 depth-based image-to-image generations (and inpainting) +- fix: k_euler_a produces more consistent images per seed (randomization respects the seed again) **7.2.0** - feature: 🎉 tile in a single dimension ("x" or "y"). This enables, with a bit of luck, generation of 360 VR images. diff --git a/assets/pearl_depth_1.jpg b/assets/pearl_depth_1.jpg new file mode 100644 index 0000000..a4e03ed Binary files /dev/null and b/assets/pearl_depth_1.jpg differ diff --git a/assets/pearl_depth_2.jpg b/assets/pearl_depth_2.jpg new file mode 100644 index 0000000..0da389a Binary files /dev/null and b/assets/pearl_depth_2.jpg differ diff --git a/assets/pearl_depth_3.jpg b/assets/pearl_depth_3.jpg new file mode 100644 index 0000000..3c47510 Binary files /dev/null and b/assets/pearl_depth_3.jpg differ diff --git a/setup.py b/setup.py index 052ed0f..cbcd66a 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ setup( name="imaginAIry", author="Bryce Drennan", # author_email="b r y p y d o t io", - version="7.2.0", + version="7.3.0", description="AI imagined images. Pythonic generation of stable diffusion images.", long_description=readme, long_description_content_type="text/markdown",