Fri Mar 25, 2011 6:13 pm
I = imread('cameraman.tif');
%% Show current image.
imshow(I);
figure;
G=imnoise(I,'gaussian',0.0005,0.0019);
imshow(G);
figure;
h = fspecial('average', 3);
F=imfilter(G,h);
imshow(F);
Codemiles.com is a participant in the Amazon Services LLC Associates Program, an affiliate advertising program designed to provide a means for sites to earn advertising fees by advertising and linking to Amazon.com
Powered by phpBB © phpBB Group.