Perlin Noise


A demonstration of Perlin noise

Maths Statistics Probability




The two charts above demonstrate the difference between Perlin Noise and White Noise. Both are limited to a value between 0 and 1, but whereas white noise is truly random, Perlin noise results in a sequence of values that when, plotted along an x-axis, meander up and down smoothly.

This makes Perlin Noise an ideal method to generate things such as natural-looking landscapes, textures and cloud formations. It is named after Ken Perlin who invented it in 1985 for this very purpose (he would later go on to win an Oscar for Technical Achievement after his method was used to create many special effects in movies).

Credits

  • The particular Perlin noise algorithm used in the example was implemented by Sean McCullogh.