matlab gabor 滤波器

来源:互联网 发布:免费约软件 编辑:程序博客网 时间:2024/05/17 07:08

0. gabor 基本原理

1. matlab 内置对 gabor 的支持

  • gabor:Create Gabor filter or Gabor filter bank
    • g = gabor(wavelength,orientation)
g = gabor([5, 10], [0, 90]);figure;for p = 1:length(g),    subplot(2, 2, p);    imshow(g(p).SpatialKernel, []);    lambda = g(p).Wavelength;    theta = g(p).Orientation;    title(sprintf('Re[h(x, y)], \\lambda = %d, \\theta = %d\\circ', lambda, theta));end



2. 手动实现

0 0