Tyler Hobbs

View Original

Utilizing Random Number Generator Seeds

Most generative artwork heavily utilizes randomness, making the output of each run unique. That's usually a good thing, but sometimes it's useful to be able to regenerate exactly the same image. For example, while developing a piece of generative artwork, you may want to work with small images to make the generation process faster. However, once the program is complete, you'll need to generate a much larger image if you want to be able to print it at a reasonable size. Sometimes you'll want this larger image to be exactly the same as a smaller version that you like. That's where seeds come in handy.

HOW PSEUDO-RANDOM NUMBER GENERATORS WORK

The standard random number generator available in most programming languages is actually a pseudo random number generator (pRNG). This means that the numbers it produces aren't actually random, but are a series of transformations applied to a starting number: the seed. Given different seeds, the pRNG will produce difference sequences of numbers. Given the same seed, the pRNG will always produce the same sequence of numbers. We can take advantage of this by using different seeds when we want unique images, but a specific seed when we want a particular generative image.

USING SEEDS WITH PROCESSING (OR QUIL)

In Processing, you can set the seed for the pRNG with the randomSeed() function. In Quil, this is the random-seed function.

In order to get a different seed each time the program is run, I like to use a timestamp. However, you should note that only the highest 48 bits of the seed are used (rather than the expected full 64 bits). So, if you use something like System.currentTimeMillis() for the seed, you may end up generating the same image multiple times in a row. To avoid this, I use System.nanoTime() as the seed value.

(let [seed (System/nanoTime)]   (println "setting seed to:" seed)   ; Random.setSeed() only uses the highest 48 bits of the seed   (random-seed seed)) 

To make it easy to keep track of what seed was used to generate a particular image, I include the seed in the saved filename. I also include a millisecond timestamp to ensure that time-based sorting of the filenames works across restarts of the JVM:

(let [filename (str "sketch-" cur-time "-seed-" seed ".tif")]   (save filename)   (println "done saving" filename)) 

If I want to generate another image using a particular seed, I can get it from the filename and simply hardcode it.

(random-seed 31339586838380) 

Putting it all together, my draw() function normally looks like this:

(defn draw []   (no-loop)    (doseq [img-num (range 1)]     (println "generating image" img-num)      (let [cur-time (System/currentTimeMillis)           seed (System/nanoTime)]        ; Random.setSeed() only uses the highest 48 bits of the seed       (random-seed seed)       (println "setting seed to:" seed)        ; actually generate the image       (main)        ; save the image to a file       (let [filename (str "sketch-" cur-time "-seed-" seed ".tif")]         (save filename)         (println "done saving" filename)))))

If you found this useful, sign up for my newsletter below to be notified whenever I write something new about generative artwork.

Cheers!


See this form in the original post