MATLAB: Random noise matlab.

matlab function

how to add random noise to image in matlab?

Best Answer

There are many choices you might make for the distribution of the noise. For independent additive Gaussian noise you could do this:
noisyImage = originalImage + noiseAmplitude * randn(size(originalImage));
Related Question