a cat walking under apple trees style by Stable Diffusion

Arash Kamangir
2 min readOct 5, 2022

--

After generating images and videos with Stable Diffusion, it is time to work with style:

blue_stability generate image \
~dryrun \
cat-salvador-dali \
- \
"a cat walking under apple trees style by Salvador Dali"

Here are three examples.

“a cat walking under apple trees style by …”, from left to right, Van Gogh, Salvador Dali, and Pablo Picasso.

Next, automation to extend to 20 artists.

abcli select cat-under-trees-v2
abcli script
# create the script
abcli script source

Here is the script:

#! /usr/bin/env bashfunction runme() {
local sentence="a cat walking under apple trees"
local prefix="cat-under-trees"

local list_of_artists="Leonardo-da-Vinci,Vincent-van-Gogh,Michelangelo,Gustav-Klimt,Claude-Monet,Paul-Cézanne,Frida-Kahlo,Salvador-Dali,Jackson-Pollock,Johannes-Vermeer,Wassily-Kandinsky,Edvard-Munch,Paul-Gauguin,Pablo-Picasso,Rembrandt,Diego-Velázquez,Henri-Matisse,Andy-Warhol,Edgar-Degas,J.-M.-W.-Turner,Caravaggio"
local artist
for artist in $(echo $list_of_artists | tr , " ") ; do
blue_stability generate image \
~dryrun \
$(python3 -c "print('$artist'.lower().replace(' ','-'))") \
- \
"$sentence style by $(echo $artist | tr - " ")"
done
abcli_log "completed."
}
runme $@

And here are some of the results.

“a cat walking under apple trees style by …” — download link

--

--

No responses yet