I have a vector in which I have added a Gaussian white noise (with zero mean and standard deviation 0.001). More particularly, I used the imnoise function in MATLAB as:
pixel_noisy = imnoise(original_pixel, 'Gaussian', 0, 0.001);
My question: is there a way to extract the noise vector that has been added to the original pixel? The noise vector has been added automatically after the use of imnoise. Although that, is it possible to know what was this noise vector?
Any help will be very appreciated!