MATLAB laplace梯度算法

 首先,使用fspecial(T,P)产生一个laplace算子。
h1=fspecial('laplacian')%laplacian代表laplace滤波器
其次,进行滤波
A=imread('1.bmp');
 B=imfilter(A,h1);
subplot(1,2,1),imshow(A);
subplot(1,2,2),imshow(B);

你可能感兴趣的:(算法,matlab)