What is noise?

Noise is information that is random or semi random. If you’ve ever been flipping through radio stations and gotten to a channel that is just buzzing static, that’s noise. If you’ve ever been trying to change inputs on your TV and it looks like a bunch of black and white dots rapidly dancing about, that’s also noise. In both of these cases your radio and your TV are receiving information and trying to display it to you but because the information is random or improperly formatted its displayed as random sounds or shapes. There is also noise that is purposefully generated, it’s generated in such a way that it seems random, but beneath the surface there are many processes that are shaping it so that people can control how it looks.

One of the simplest ways that noise is generated for use in computer graphics is first to generate a big grid of numbers usually from 0 to 1. With 0 being black and 1 being white and any number in-between being a shade of the two. Once you have this grid you fill each grid square with the corresponding color and then using math you can blur the image by averaging the colors together. This gets you a very simple type of noise known as “Value Noise”. More advanced forms of noise have more sophisticated blurring techniques to make the noise seem more natural and random.

There are many different types of noise with different properties and looks to them. Some types of noise can by animated leading to even more possibilities in their use. Can you think of any uses for these noise textures? Click the drop down to view different types of noise.

Types of Noise.

There are many types of noise that people can generate with different use cases. One of the most common types of noise generated is called Perlin noise. Like value noise its generated with a big grid of colors ranging from black to white. But unlike value noise these aren’t simply just numbers from 0 to 1 but vectors that also point in a certain direction, and this helps the noise to be much smoother and more naturalistic.

Another common type of noise is sometimes called Voronoi noise where we look at our grid and place a bunch of random dots over it and based on how close we are to the dot determines what color or shade of black the grid is.

Here an example of a simple type of noise known as Value Noise. Value noise is just a grid of squares where a number is generated from 0 to 1 with 0 being pure black, and 1 being pure white. Click the button labeled Switch Color/Numbers to view the number associated with each square or click New Noise to generate a new set of numbers and therefore a new noise pattern.

How Its used.

Noise is used all throughout computer graphics to help make things seem more realistic. The realm of computers is one of perfect ones and zeros so things made using computers are usually feel very artificial. To make things feel more real noise in the form of noise textures is added to break up the clean uniformness that a computer generates. Of course, noise textures are generated by computers so they are not completely random but they do a good enough job, and a clever enough artist can use noise textures to bring digital works to life.

Some examples of things noise textures can were shown in the video at the top of the page. By taking Perlin noise and increasing the contrast between bright and dark areas you can create convincing textures that look like clouds in the sky. By greatly increasing the contrast (or brightness or something) until there is very little white part of the noise you can create a texture that simulated film grain. In 3D graphics software you can take a flat plane and put a noise texture on it and say all the areas where it is white are raised up and all the black areas are lowered and you can create mountainous landscapes. And the possibilities are endless, if there is some natural phenomenon out there with enough creativity you could probably recreate it with noise, like ocean waves, or the scales of a lizard, or a metal panel, really anything as long as you have the proper understanding of what noise textures are and can do.

←PREV NEXT→