www.gusucode.com > 图像识别 人脸识别和虹膜识别 > code7/get_all_gaborcoef.m

    % 产生不同参数的gabor系数,调用mygabor()
% Jason Wang
% 2005.12.07
function gabor = get_all_gaborcoef();
n=1;
for f = 8:2:16 %频率
    for theta = 0 : pi/4 : 3*pi/4 %方向
        gaborcoef = mygabor(1/f,theta);
        gabor{n} = gaborcoef;
        n=n+1;
    end
end