ilap.m
来自「来自澳大利亚Qeensland大学的计算机视觉Matlab工具箱。 This 」· M 代码 · 共 20 行
M
20 行
%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 + =
减小字号Ctrl + -
显示快捷键?