1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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);
|