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

Hill Climbing Art

A gif of image generation with the hill climbing algo
The hill climbing algo at work

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.

Jimi Hendrix in circles
Jimi on the guitar, with circles (Original)
Wanderer above the sea of fog with transparent circles
Wanderer above the Sea of Fog, with transparent circles (Original)
Wanderer above the sea of fog with transparent circles
Europe a Prophecy copy K plate 01, with triangles (Original)
Sunrise behind storm clouds on Lake Michigan
Sunrise behind storm clouds on Lake Michigan

Fractals

Burning Ship fractal
Burning Ship fractal. The bounding box coordinates are ((0.8073, -1.40644), (0.8081, -1.40684)) and I flip the image vertically.
The Mandelbrot set rendered with z_t+1 = (z_t + c)^2 and an escape radius of 2.
A modified Mandelbrot set

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.