diff options
Diffstat (limited to '3176/CH10/EX10.2')
-rw-r--r-- | 3176/CH10/EX10.2/Ex10_2.sce | 24 | ||||
-rw-r--r-- | 3176/CH10/EX10.2/Ex_10_2_3.jpeg | bin | 0 -> 64557 bytes | |||
-rw-r--r-- | 3176/CH10/EX10.2/Ex_10_2_4.jpeg | bin | 0 -> 51418 bytes |
3 files changed, 24 insertions, 0 deletions
diff --git a/3176/CH10/EX10.2/Ex10_2.sce b/3176/CH10/EX10.2/Ex10_2.sce new file mode 100644 index 000000000..4312199d7 --- /dev/null +++ b/3176/CH10/EX10.2/Ex10_2.sce @@ -0,0 +1,24 @@ +//Ex10_2
+// Using the Laplacian for the Detection
+// 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("Ex10_2.tif");
+figure,ShowImage(a,'Gray Image');
+title('Wire Bond Template Image','color','blue','fontsize',4);
+[M,N]=size(a);
+
+Mask=[1 1 1;1 -8 1;1 1 1]; // Mask for the Lapalacian
+Filtered_Image=imfilter(a,Mask); // Filtering the Original Image with the Mask
+figure,ShowImage(Filtered_Image,'Filter Image');
+title('Laplacian Image','color','blue','fontsize',4);
+
diff --git a/3176/CH10/EX10.2/Ex_10_2_3.jpeg b/3176/CH10/EX10.2/Ex_10_2_3.jpeg Binary files differnew file mode 100644 index 000000000..9f05a2d3a --- /dev/null +++ b/3176/CH10/EX10.2/Ex_10_2_3.jpeg diff --git a/3176/CH10/EX10.2/Ex_10_2_4.jpeg b/3176/CH10/EX10.2/Ex_10_2_4.jpeg Binary files differnew file mode 100644 index 000000000..8674ef602 --- /dev/null +++ b/3176/CH10/EX10.2/Ex_10_2_4.jpeg |