what is the meaning of bandwidth in octav?

10 visualizaciones (últimos 30 días)
hind
hind el 23 de Nov. de 2011
what is the meaning of bandwidth in octav?
  4 comentarios
Jan
Jan el 24 de Nov. de 2011
@hind: No, your question is not trivial. It contains not enough details to be answered easily - or at all.
hind
hind el 24 de Nov. de 2011
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

Iniciar sesión para comentar.

Respuestas (1)

hind
hind el 24 de Nov. de 2011
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

Categorías

Más información sobre Octave en Help Center y File Exchange.

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by