what is the meaning of bandwidth in octav?

23 次查看(过去 30 天)
what is the meaning of bandwidth in octav?
  4 个评论
Jan
Jan 2011-11-24
@hind: No, your question is not trivial. It contains not enough details to be answered easily - or at all.
hind
hind 2011-11-24
actually I want to write code of circular gabor filter in matlab and there is relations between (gaussian sigma σ) and (central frequency of gabor fc) is described as
σ.fc= (1/pi).sqrt(ln2/2).((2^ΔF+1)/(2^ΔF-1))
where ΔF (∈[0.5, 2.5]) denotes the bandwidth in octave. and σ with five-pixel width
Idon't know how to represent this correctly

请先登录,再进行评论。

回答(1 个)

hind
hind 2011-11-24
this my code is it rghit?
sigma = 5;
fc= (1/pi*sigma)*sqrt(log(2)/2)*(((2^1.12)+1)/((2^1.12)-1));
for x = -fix(sigma):fix(sigma)
for y = -fix(sigma):fix(sigma)
G(fix(sigma)+x+1,fix(sigma)+y+1) = (exp(-.5*((x/sigma)^2+(y/sigma)^2)))* cos(2*pi*fc*(sqrt((x)^2+(y)^2)));
end
end

类别

Help CenterFile Exchange 中查找有关 Octave 的更多信息

产品

Community Treasure Hunt

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

Start Hunting!

Translated by