datfilt.m

来自「matlab的模式识别toolbox」· M 代码 · 共 51 行

M
51
字号
%DATFILT Filtering of dataset images%%   B = DATFILT(A,F)%% INPUT%   A  Dataset with image data%   F  Matrix with the convolution mask%% OUTPUT%   B  Dataset containing all the images after filtering%% DESCRIPTION% All images stored in the dataset A are horizontally and vertically% convoluted by the 1-dimensional filter F. A uniform N*N filter is, % thereby, realized by DATFILT(A,ONES(1,N)/N).%% SEE ALSO% DATASETS, IM2OBJ, DATA2IM, IM2FEAT, DATGAUSS, DATAIM% Copyright: R.P.W. Duin, duin@ph.tn.tudelft.nl% Faculty of Applied Sciences, Delft University of Technology% P.O. Box 5046, 2600 GA Delft, The Netherlands% $Id: datfilt.m,v 1.4 2003/10/17 15:05:48 bob Exp $function a = datfilt(a,f)	prtrace(mfilename);		[m,k] = getsize(a);	n  = length(f);	nn = floor(n/2);	im = data2im(a);	[imheight,imwidth,nim] = size(im);	for i=1:nim		% Add a border with NN pixels, set the border to		% the mirrored original values (private function).		c = bord(im(:,:,i),NaN,nn);    c = conv2(f,f,c,'same');		im(:,:,i) = resize(c,nn,imheight,imwidth);	end	if (isfeatim(a))		a = setdata(a,im2feat(im),getfeatlab(a));	else		a = setdata(a,im2obj(im),getfeatlab(a));	end	return;

⌨️ 快捷键说明

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