im very new to matlab...i downloaded the code from net..bet when i try to run it it shows an error "not enough input arguments"...please help me

2 次查看(过去 30 天)
%The second it that one needs to convert the image into the frequency
%domain, multiply the spectra and then take the inverse of the result.
function [G,gabout] = gaborfilter2(I,Sx,Sy,f,theta)
if isa(I,'double')~=1 I = double(I); end
for x = -fix(Sx):fix(Sx) for y = -fix(Sy):fix(Sy) xPrime = x * cos(theta) + y * sin(theta); yPrime = y * cos(theta) - x * sin(theta); G(fix(Sx)+x+1,fix(Sy)+y+1) = exp(-.5*((xPrime/Sx)^2+(yPrime/Sy)^2))*cos(2*pi*f*xPrime); end end
Imgabout = conv2(I,double(imag(G)),'same'); Regabout = conv2(I,double(real(G)),'same');
gabout = sqrt(Imgabout.*Imgabout + Regabout.*Regabout);

回答(1 个)

Hassan Dehghani
Hassan Dehghani 2015-4-28
this is a function, I, Sx, Sy, f, theta are the inputs. try typing something like this,
[G,gabout] = gaborfilter2(1,2,3,4,30)
I don't know what I, Sx,Sy,and f are, so you should change them.

类别

Help CenterFile Exchange 中查找有关 Image Data Workflows 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by