MATLAB: Noise levels

image processingMATLAB

how to add different noise levels to a image

Best Answer

A = 20; %amplitude of 10 - noise
noise = (rand(size(I))-.5)*A);
Inoisy = I+noise;