📄 ilap.m
字号:
%ILAP Convolve with Laplacian kernel%% im2 = ILAP(image)%% Return the image after convolution with the Laplacian kernel% 0 -1 0% -1 4 -1% 0 -1 0%% SEE ALSO: ilog conv2%% Copyright (c) Peter Corke, 1999 Machine Vision Toolbox for Matlabfunction il = ilap(im); mask = [0 -1 0; -1 4 -1; 0 -1 0]; il = conv2(im, mask);
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -