summaryrefslogtreecommitdiff
path: root/3176/CH3/EX3.13/Ex3_13.sce
blob: fab5173a9500032c1fd57ee66164fab5cd127b1d (plain)
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
//Ex3_13
// Image Smoothing
// Version : Scilab 5.4.1
// Operating System : Window-xp, Window-7
//Toolbox: Image Processing Design 8.3.1-1
//Toolbox: SIVP 0.5.3.1-2
//Reference book name : Digital Image Processing
//book author: Rafael C. Gonzalez and Richard E. Woods



clc;
close;
clear;
xdel(winsid())//to close all currently open figure(s).
a=imread('Ex3_13.tif');
[M N]=size(a);
figure,ShowImage(a,'Original Image');
title('Original Image','color','blue','fontsize',4);

/////////////////////////// Smoothing with Mask Size (3*3) /////////////////////////
F=fspecial('average',3);
Image=imfilter(a,F);
figure,ShowImage(Image,'Original Image');
title('Filtered Image with Mask Size(3*3)','color','blue','fontsize',4);

/////////////////////////// Smoothing with Mask Size (5*5) /////////////////////////
F=fspecial('average',5);
Image=imfilter(a,F);
figure,ShowImage(Image,'Original Image');
title('Filtered Image with Mask Size(5*5)','color','blue','fontsize',4);

/////////////////////////// Smoothing with Mask Size (5*5) /////////////////////////
F=fspecial('average',9);
Image=imfilter(a,F);
figure,ShowImage(Image,'Original Image');
title('Filtered Image with Mask Size(9*9)','color','blue','fontsize',4);

/////////////////////////// Smoothing with Mask Size (5*5) /////////////////////////
F=fspecial('average',15);
Image=imfilter(a,F);
figure,ShowImage(Image,'Original Image');
title('Filtered Image with Mask Size(15*15)','color','blue','fontsize',4);

/////////////////////////// Smoothing with Mask Size (5*5) /////////////////////////
F=fspecial('average',35);
Image=imfilter(a,F);
figure,ShowImage(Image,'Original Image');
title('Filtered Image with Mask Size(35*35)','color','blue','fontsize',4);