-
大小: 2KB文件类型: .rar金币: 1下载: 0 次发布日期: 2021-06-26
- 语言: 其他
- 标签: gaborfilter 源代码
资源简介
gaborfilter函数源代码(里面有三个程序),对研究gaborfilter有很大帮助!
代码片段和文件信息
%%%%%%%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));
gabout = sqrt(Imgabout.*Imgabout + Regabout.*Regabout);
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 1860 2004-06-14 09:39 gaborfilter2.m
文件 1365 2010-03-28 22:54 gaborfilter.m
文件 1553 2010-03-29 14:58 gaborfilter1.m
----------- --------- ---------- ----- ----
4778 3
相关资源
- 一种轻量级嵌入式GUI设计与源代码
- jrtplib 3.9
- LCD12864里面包括源代码和使用Proteus仿
- 网络编程 C 基于TCP/IP协议的聊天室源
- STM32 F103R6 GPIO 闪烁源代码Keil及protue
- DNS客户端源代码
- 新大话西游经典系列源代码
- 安卓客户端与服务端交互源代码包括
- IP数据包流量监控源代码希望大家有用
- Mic4PC手机端源代码
- Qt从零开始制作串口调试助手源代码(
- 基于winpcap协议分析器源代码
- 读取STC单片机ID号,用CRC-ITU算法加密
- FTP服务器和客户端源代码 vs2010能运行
- 103规约主站侧源代码
- flash小游戏源代码
- vfp学籍管理系统源代码及说明
- 文件程序传输源代码
- flash 打鸭子游戏 源代码
- 校际运动会管理系统报告+源代码
- 最小bootloader的实现完整源代码
- 汇编语言课程设计案例精编源代码
- 机器学习SVM(支持向量机)实验报告
- 数据结构课程设计——收藏夹和购物
- R for Data ScienceR数据科学源代码
- 深度学习之美AI时代的数据处理与最佳
- 树莓派小车自动驾驶完整源代码
- STM32驱动MG955舵机的源代码
- NSGA2源代码
- 程序员表白动画源代码
评论
共有 条评论