私の主な目標は、畳み込み定理が機能することを示すことです(念のため、畳み込み定理はそれを意味しidft(dft(im) .* dft(mask)) = conv(im, mask)
ます)。私はそれをプログラムしようとしています。
これが私のコードです:
function displayTransform( im )
% This routine displays the Fourier spectrum of an image.
%
% Input: im - a grayscale image (values in [0,255])
%
% Method: Computes the Fourier transform of im and displays its spectrum,
% (if F(u,v) = a+ib, displays sqrt(a^2+b^2)).
% Uses display techniques for visualization: log, and stretch values to full range,
% cyclic shift DC to center (use fftshift).
% Use showImage to display and fft2 to apply transform.
%displays the image in grayscale in the Frequency domain
imfft = fft2(im);
imagesc(log(abs(fftshift(imfft))+1)), colormap(gray);
% building mask and padding it with Zeros in order to create same size mask
b = 1/16*[1 1 1 1;1 1 1 1; 1 1 1 1; 1 1 1 1];
paddedB = padarray(b, [floor(size(im,1)/2)-2 floor(size(im,2)/2)-2]);
paddedB = fft2(paddedB);
C = imfft.*paddedB;
resIFFT = ifft2(C);
%reguler convolution
resConv = conv2(im,b);
showImage(resConv);
end
resIFFT
比較したいですresConv
。キャストを使用してdoubleを使用している場合、マトリックス内の数値が互いに近くなるため、キャストが欠落していると思います。たぶん、キャスティングやパディングの場所に間違いがありますか?