Generative Art
I'm interested in the intersection of computers and art, especially when randomness is involved. These are a few creations I'm proud of.
Code on my GitHub!
Quick links
I'm interested in the intersection of computers and art, especially when randomness is involved. These are a few creations I'm proud of.
Code on my GitHub!
Quick links
I generated these images using a hill climbing algorithm. This algo attempts to replicate a target image by randomly drawing thousands of simple shapes, such as circles. After drawing each shape, the algo checks whether things look more or less similar to the image it's trying to replicate. If a shape makes things more similar the algo keeps it, otherwise the algo tries again with a different shape. This creates a random, layered pattern that progressively begins to resemble the target image.
The algo isn't very efficient. In the image of Jimi Hendrix below the algo tried drawing 100,000 random circles but ultimately used just less than 4,000 for the final image. I wrote a post with more details on the process.
((0.8073, -1.40644), (0.8081, -1.40684))
and I flip the image vertically.
This image uses the quadratic map z_t+1 = (z_t + c)^2
.
The blue, pill-shaped effect shows up for this equation when I stop calculating points which move beyond an escape radius of 2.
As I increase the escape radius, things visually look more like the standard Mandelbrot set, although I do not know if they actually converge.