⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 filt2dim.m

📁 这是一个曲率算法实现工具,对图像处理有着重要的应用,并有测试代码
💻 M
字号:
% Two-dimensional convolution filter
% Select the implementation from either the DIPimage toolbox or the SIGNAL processing toolbox
% DIPimage: http://www.ph.tn.tudelft.nl/DIPimage

function output_im = filt2dim(input1_im, input2_im)

% MATLAB's signal processing toolbox
output_im = filter2(input1_im, input2_im);

% DIPimage toolbox
% output_im = convolve(input2_im, input1_im);

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -