-
Notifications
You must be signed in to change notification settings - Fork 1
/
main.m
32 lines (26 loc) · 1.27 KB
/
main.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
% Adding Noise to the images- speckle
%------------------------------------------------------------------------------------------------------------------------------------
% Note: If you are using my code for your system or project, you should always cite my paper as a reference. K C.Jithin, SyamSankar,
web('https://docs.google.com/document/d/1AbCxFoUhdOCppM8novgCdOv0F9mqYe7HlBU7yX7Svx0/edit?usp=sharing')
web('published_work.html')
%--------------------------------------------------------------------------------------------------------------------------------------
% Demo:
% a=imread('image.png');
%------------------------------------------------------------------------
% Enter your original plain image name here
a=imread('');
%------------------------------------------------------------------------
% Calling Noise adding function
[b,c,d]=spe(a);
%------------------------------------------------------------------------
% Output
% Noise added image:-default
figure;
imshow(b);title('Noise added image:-default');
% Noise added image:- low
figure;
imshow(c);title('Noise added image:- low');
% Noise added image:- high
figure;
imshow(d);title('Noise added image:- high');
%---------------------------------------------------------------------