使用拉普拉斯算子

I=imread('test.jpg');  %使用拉普拉斯算子进行图像锐化
h1=[0,-1,0;-1,5,-1;0,-1,0];
h2=[-1,-1,-1;-1,9,-1;-1,-1,-1];
BW1=imfilter(I,h1);   %五领域
BW2=imfilter(I,h2);  %八领域
figure;
imshow(uint8(BW1));
figure;
imshow(uint8(BW2));

你可能感兴趣的:(使用拉普拉斯算子)