function EdgeTest

Itif=imread('image1.tif');
B=edge(Itif,'canny');
C=edge(Itif,'log');
figure;
%subplot (2,1,1);
imshow(Itif);
%subplot(2,1,2);
figure;
imshow(B);
figure;
imshow(C);