summaryrefslogtreecommitdiff
path: root/3176/CH3/EX3.17/Ex3_17.sce
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /3176/CH3/EX3.17/Ex3_17.sce
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '3176/CH3/EX3.17/Ex3_17.sce')
-rw-r--r--3176/CH3/EX3.17/Ex3_17.sce27
1 files changed, 27 insertions, 0 deletions
diff --git a/3176/CH3/EX3.17/Ex3_17.sce b/3176/CH3/EX3.17/Ex3_17.sce
new file mode 100644
index 000000000..ec221d928
--- /dev/null
+++ b/3176/CH3/EX3.17/Ex3_17.sce
@@ -0,0 +1,27 @@
+//Ex3_17
+// Use of gradient for Edge Enhancement
+// 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=rgb2gray(imread('Ex3_17.png'));
+[M N]=size(a);
+figure,ShowImage(a,'Original Image');
+title('Original Image','color','blue','fontsize',4);
+
+/////////////////////////// Laplacian Filtering /////////////////////////
+F=fspecial('sobel'); // Sobel Mask
+Image1=imfilter(a,F);
+figure,ShowImage(Image1,'Original Image');
+title('Filtered Image with Sobel Gradient(3*3)','color','blue','fontsize',4);
+
+