资源简介
gabor滤波是数字信号处理中常用的运算。这里的三个matlab代码可以让你理解gabor滤波器的机理
代码片段和文件信息
%%%%%%%VERSION 1
%The Gabor filter is basically a Gaussian (with variances sx and sy along x and y-axes respectively)
%modulated by a complex sinusoid (with centre frequencies U and V along x and y-axes respectively)
%described by the following equation
%%
% 1 -1 x ^ y ^
%%% G(xy) = ---------- * exp ([----{(----) 2+(----) 2}+2*pi*i*(Ux+Vy)])
% 2*pi*sx*sy 2 sx sy
%% Describtion :
%% I : Input image
%% Sx & Sy : Variances along x and y-axes respectively
%% U & V : Centre frequencies along x and y-axes respectively
%% G : The output filter as described above
%% gabout : The output filtered image
%% Author : Ahmad poursaberi e-mail : a.poursaberi@ece.ut.ac.ir
%% Faulty of Engineering Electrical&Computer DepartmentTehran
%% UniversityIranJune 2004
function [Ggabout] = gaborfilter(ISxSyUV);
if isa(I‘double‘)~=1
I = double(I);
end
for x = -fix(Sx):fix(Sx)
for y = -fix(Sy):fix(Sy)
G(fix(Sx)+x+1fix(Sy)+y+1) = (1/(2*pi*Sx*Sy))*exp(-.5*((x/Sx)^2+(y/Sy)^2)+2*pi*i*(U*x+V*y));
end
end
Imgabout = conv2(Idouble(imag(G))‘same‘);
Regabout = conv2(Idouble(real(G))‘same‘);
gabout = uint8(sqrt(Imgabout.*Imgabout + Regabout.*Regabout));
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2008-07-09 09:34 gaborfilter
文件 1307 2004-06-14 09:40 gaborfilter\gaborfilter.m
文件 1553 2004-06-14 09:39 gaborfilter\gaborfilter1.m
文件 1860 2004-06-14 09:39 gaborfilter\gaborfilter2.m
----------- --------- ---------- ----- ----
4720 4
相关资源
- gabor+svm matlab程序,一共三个文件,两
- Gabor变换实现(CmatlabOpenCV)
- Gabor小波提取图像纹理特
- 人眼识别matlab
- pca agabor 人脸识别
- MATLAB中实现Gabor滤波器
- log gabor 滤波器matlab程序
- Gabor Gabor小波变换的matlab实现
- Gaborpca Gabor小波变换与PCA的人脸识别代
- Gabor Gabor滤波器
- gabor-pca 本程序是先用gabor小波变换对
- GaborTexture Gabor滤波器方法提取纹理特
- FinalProject_rc2748
- gender-recognition
- renlianshibie Gabor小波人脸识别
- LGBP-feature 提取Gabor特征
- gabor gabor二维滤波器
- gabor2 在国外的好论坛下的
- GaborFilter 利用Gabor滤波器提取图像纹理
- Gabor_face 自己编写的Gabor 2DPCA人脸识别
- Gabor-Matlab MATLAB实现gabor滤波器
- gabor提取纹理特征
- gabor特征提取程序 matlab实现 附有图像
- matlab基于Gabor小波变换和人工神经网络
- LOG-Gabor滤波器MATLAB代码,自己整理的
- Gabor滤波matlab代码
- matlab编写的基于Gabor 2DPCA 人脸识别程
评论
共有 条评论