ECE_208_Project_ YVAN 5050551119
ECE 208 Signals and Systems Project (Deadline:03.06.2016) 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
THANK YOU