Skip to content

Commit 9829240

Browse files
author
Niru Maheswaranathan
committed
added ability to modify the phase of the gabor function
1 parent a2e123b commit 9829240

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

gabor.m

+5-3
Original file line numberDiff line numberDiff line change
@@ -27,16 +27,18 @@
2727
% pcolor(x,y,F); axis image;
2828
% shading('interp'); colormap copper;
2929
%
30-
% VERSION 1.0, Thu Jul 12 09:47:52 2012
30+
% VERSION 1.1, Thu Jan 10 17:47:35 2013 Added ability to modify the phase of the sinusoid
31+
% VERSION 1.0, Thu Jul 12 09:47:52 2012 Initial version
3132
%
3233
% AUTHOR: Niru Maheswaranathan
3334
3435

3536
function [x y F] = gabor(varargin)
3637

37-
% Parse Input
38+
% Parse arguments using Matlab's inputParser
3839
p = inputParser;
3940
addParamValue(p,'theta',2*pi*rand,@isnumeric);
41+
addParamValue(p,'phi',2*pi*rand,@isnumeric);
4042
addParamValue(p,'lambda',20,@isnumeric);
4143
addParamValue(p,'Sigma',10,@isnumeric);
4244
addParamValue(p,'width',256,@isnumeric);
@@ -58,7 +60,7 @@
5860
y_theta=-(x-cx)*sin(p.Results.theta)+(y-cy)*cos(p.Results.theta);
5961

6062
% Generate gabor
61-
F = exp(-.5*(x_theta.^2/p.Results.Sigma^2+y_theta.^2/p.Results.Sigma^2)).*cos(2*pi/p.Results.lambda*x_theta);
63+
F = exp(-.5*(x_theta.^2/p.Results.Sigma^2+y_theta.^2/p.Results.Sigma^2)).*cos(2*pi/p.Results.lambda*x_theta + p.Results.phi);
6264

6365
% normalize
6466
F = F./norm(F(:));

0 commit comments

Comments
 (0)