资源简介
利用Gabor滤波器提取图像纹理特征,用于图像分类模式识别
代码片段和文件信息
function Gimg = gaborConvF(imgGgWinLen)
%GIMG = GABORCONV(IMGGGWINLEN) Computes Gabor transform using FFT
% G is the generated FFTed Gabor kernels using GENGABORKERNELF GIMG will
% be a cell the same size w/ G. GWINLEN is the radius of the origin kernel
% Yan Ke @ THUEE xjed09@gmail.com
[scale_num angle_num] = size(G);
Gimg = cell(scale_numangle_num);
[fftM fftN] = size(G{1});
[imgM imgN] = size(img);
f = padarray(img[gWinLen gWinLen]‘rep‘);
fimg = fft2(ffftMfftN);
for r = 1:scale_num
for s = 1:angle_num
filtered = ifft2(fimg.*G{rs}); % conv in freq domain
cropped = filtered(gWinLen*2+(1:imgM)gWinLen*2+(1:imgN));
Gimg{rs} = abs(cropped); % use magnitude
end
end
end
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 702 2011-03-19 01:01 gaborConvF.m
文件 1512 2011-03-19 01:01 genGaborKernel.m
文件 661 2010-10-14 22:05 genGaborKernelF.m
文件 1334 2011-03-18 13:08 license.txt
相关资源
- LBP 纹理模式的LBP特征表示及分类原理
- Gabor Gabor小波变换的matlab实现
- wenli 分析了纹理特征提取方法
- naive_bayes_numeric 利用matlab实现的朴素贝
- svm_matlab 用SVM算法实现聚类与分类的例
- PCA_SVM 此方法采用经典的PCA对人脸图像
- LVRclass21
- Gaborpca Gabor小波变换与PCA的人脸识别代
- Gabor Gabor滤波器
- Bp 利用Bp神经网络实现的两类分类程序
- aaa 关于遥感图像分类方面的程序源代
- meanshiftsegmentation 均值漂移图像分割测
- BP 基于BP神经网络设计分类器
- DS-THEROY 根据D-S理论
- fsvmPpca-face-Recognition 首先用PCA对ORA人脸
- gabor-pca 本程序是先用gabor小波变换对
- tezhengtiqu 基于小波变换的特征提取
- GaborTexture Gabor滤波器方法提取纹理特
- FinalProject_rc2748
- gaSVMcgForClass
- imageSVM 利用svm算法分类图像。示例中
- LBP 实现图像纹理特征的提取
- matlab-SVM SVM分类程序
- EEMD-ANN
- text-classification 分别使用最近邻(KN
- adaboost-train-test 级联分类器学习
- CBIR-matlab-GUI
- gender-recognition
- renlianshibie Gabor小波人脸识别
- BP-classification BP神经网络图像分类程序
评论
共有 条评论