Noise is an unwanted component added to the true image signal during acquisition, storage or transmission, usually random. Structured corruptions introduced by processing, such as compression blocking or aliasing, are normally called artefacts instead.
Often modeled probabilistically, since noise is usually embedded within image detail
Properties
- Locality
Noise affects isolated pixels, while image pixels are correlated locally, so noisy pixels stand out by examining local correlation. - Randomness
Noise follows a probability distribution based on its source, allowing its level to be estimated. - Visibility
Noise can be visible, especially in low-contrast images, but is often not perceptible.
Noise Distribution Models
A noise model gives the probability density of the noise value added to a pixel. The shape of depends on the noise source and decides which filter cancels it.
Gaussian Noise
Independent noise drawn from a normal distribution is added to every pixel.
Here:
- : noise value added to a pixel
- : mean, taken as so the noise neither brightens nor darkens on average
- : standard deviation, sets the noise strength
only gives the probability of each noise value. The amount added to a pixel is an independent random draw following , so the equation fixes the odds, not the outcome.
Unimodal and symmetric about . About 68% of values fall within , so most pixels get zero or small noise and large deviations are rare. Arises when many small independent disturbances add up, such as sensor thermal noise. Most common model.

Left: Original. Right: With added Gaussian noise. Every pixel is perturbed by a small zero-mean random amount. Generated from a photo by Hannes Röst, CC BY-SA 3.0.
Uniform Noise
Every noise value in a fixed range is equally likely.
Here:
- : lower bound of the noise range
- : upper bound of the noise range
Flat with no peak. Mean is . Hard to estimate because no noise value is more frequent than another. Rarely matches a real source. Quantisation error is close to uniform.
Salt and Pepper Noise
Aka. impulse noise. A fraction of pixels are forced to the minimum or maximum intensity. The rest are left unchanged.
Here:
- , : darkest and brightest intensity values
- : probability a pixel is set to , seen as pepper
- : probability a pixel is set to , seen as salt
Bi-modal, with spikes only at the two intensity extremes. Corrupted pixels keep none of their original value, so they act as outliers. Caused by bit errors in transmission, dead sensor elements, or ADC faults.

Left: Original. Right: With salt and pepper noise on about 5% of pixels, each forced to pure black or pure white. Generated from a photo by Hannes Röst, CC BY-SA 3.0.
Noise Filtering
Noise filtering identifies and reverses the effect of noise on an image, using properties of noise rather than direct observation, since only pixel values after corruption are visible.
Frame Averaging
For a static scene captured over frames, averaging corresponding pixels across frames cancels the noise contribution while preserving the scene.
Here:
- : static source scene frame
- : noise in frame
Mean Filter
Averages pixel values within a local neighbourhood. Since correlated image features vary slowly relative to sampling resolution, any local variation is assumed to be noise.
As a convolution kernel:
Blurring
Local pixel variation is not always caused by noise. Averaging over genuine detail blurs it.
Weighted averages, with more weight on the pivot pixel, reduce blurring:
Gaussian Filter
Weights arranged according to a 2-D Gaussian surface.
Conditional Averaging
Reduces blurring by only replacing pixels where the local variation is likely to be noise.
- Threshold averaging
Replace the pixel with the local mean only if the difference from the pivot is smaller than a threshold .
- -closest averaging
Select pixels with values closest to the pivot before averaging, avoiding outliers that represent real image features. Requires sorting pixel values.
Median Filter
Replaces the pivot pixel with the median value of its neighbourhood.
- Preserves edges better than mean filtering
- Well suited to salt and pepper noise, since outlier values get discarded rather than averaged in