Lets consider an image of 3x3 pixels with the values shown below now if I apply imnoise function(MATLAB image processing toolbox) with Gaussian noise of 0 mean and 0 standard deviation I am getting all ones
original matrix with double precession data type
16 32 64
96 128 192
224 100 50
final matrix after applying Gaussian noise with 0 mean and 0 standard deviation
1 1 1
1 1 1
1 1 1
As far I know 0 mean with 0 standard deviation is same thing as 0% of noise added to the original image I wanted to know how imnoise
function in MATLAB works