Sunday 19 July 2015

MATLAB Program for Laplacian of Gaussian



/* MATLAB Program for  Laplacian of Gaussian*/
I = imread('moon.tif');
imshow(I)
BW1 = edge(I,'prewitt');
BW2 = edge(I,'canny');
imshow(BW1);
figure, imshow(BW2);

 

No comments:

Post a Comment