how to create noise manually to a color image without imnoise function explain with example?
6 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
how to create noise manually to a color image without imnoise function explain with example?
Respuestas (2)
Iman Ansari
el 17 de Abr. de 2013
Hi. For gaussian noise with standard deviation of S:
clear
S = 20;
I = imread('peppers.png');
J = double(I) + S.*randn(size(I));
figure;
subplot(121)
imshow(I)
title('Original Image')
subplot(122)
imshow(J./255)
title('Additive Gaussian Noise')
0 comentarios
muhammad khatib
el 3 de Nov. de 2020
clear
S = 20;
I = imread('peppers.png');
J = double(I) + S.*randn(size(I));
figure;
subplot(121)
imshow(I)
title('Original Image')
subplot(122)
imshow(J./255)
title('Additive Gaussian Noise')
0 comentarios
Ver también
Categorías
Más información sobre Read, Write, and Modify Image en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!