2
This問題描述了gabor濾波器系列及其應用相當不錯。雖然沒有描述濾波器的波長(空間頻率)。 Gabor小波的建立在for循環如下進行:如何計算Gabor濾波器中的空間頻率?
for v = 0 : 4
for u = 1 : 8
GW = GaborWavelet (R, C, Kmax, f, u, v, Delt2); % Create the Gabor wavelets
figure(2);
subplot(5, 8, v * 8 + u),imshow (real(GW) ,[]); % Show the real part of Gabor wavelets
GW_ALL(v*8+u, :) = GW(:);
end
figure (3);
subplot(1, 5, v + 1),imshow (abs(GW),[]); % Show the magnitude of Gabor wavelets
end
我知道,第二循環變量是PI/8間隔方向。雖然,我不知道這個代碼及其功能[pixels/cycle]
中的第一個循環變量如何與空間頻率(波長)相關聯。誰能幫忙?