ECE_208_Project_
ECE 208 Signals and Systems Project (Deadline:03.06.2016) Yvan N. Picture 10 has a Gaussian noise with at a specific level.
CODE
% read
image if necessary, with its path of image,
I= imread('C:\Users\Yvan Ngassa\Documents\0 YBÜ\2nd year\signal and systems 2\pics\resim10.jpg'); % Noise reduction method for our Gaussion Noise G = fspecial('gaussian',[5 5],2); J= imfilter(I,G,'same');
% show noised image figure, imshow(I) % show noise reduction output figure, imshow(J) % noise reduction output