Wednesday, January 23, 2019

image processing - what's gaussian noise look like?



I am using Matlab function imnoise to add gaussian noise to one image. However, it seems that adjacent samples of the noise is correlated. I am using matlab code below to add noise.


 I = imread('eight.tif');
J = imnoise(I, 'gaussian', 0, 0.02);
figure; imshow(I);
figure; imshow(J);

enter image description here


From the image, it contains many short vertical gray lines which maybe be image structures for some cases. Is the noise really additive white gaussian noise(AWGN)?


histogram of noise: enter image description here




No comments:

Post a Comment

digital communications - Understanding the Matched Filter

I have a question about matched filtering. Does the matched filter maximise the SNR at the moment of decision only? As far as I understand, ...