A downloadable project

Generate abstract art using Markov Chains! This generator takes images as input and then generates a piece of abstract art based on the input.

StatusReleased
CategoryOther
Rating
Rated 4.0 out of 5 stars
(1 total ratings)
Authoralextian
Tagsart, PROCJAM

Download

Download
alextian_procjam2019.zip 1 MB

Install instructions

Make a directory and add any images you want to use as input. In ImageGenerator.py, change the folder variable at the top of the file to the directory path. Run the python file and the generated image should be generated in the output folder.

Comments

Log in with itch.io to leave a comment.

(1 edit)

Had a lot of issues installing but the output was really neat the first couple times I played with the program. After a while it felt a bit predictable but I did get it to output slightly different stuff when inputting noise or a moire pattern. Overall really cool little generator.

If you want to get this to work (I was using Python 3.6):

* `pip install Pillow` and `pip install numpy` (would be nice if there was a `requirements.txt`)

* Create a folder called `output/` or rename the input folder at the top of the script to something

* Save your image in your input folder, make sure it is _not_ an 8-bit png. It only supports 24 bit pngs. 8 bit gave me errors in readImage() transpose(), something about the axes not being the same size