资源简介
先用小波变换进行降维后,再用DCT进行特征提取,然后用SVM分类识别,SVM需先安用libsvm工具箱,然后再可以运行,该程序包含ROL人脸库,一并上传。
代码片段和文件信息
clear all;
close all;
k = 0;
for i=1:40 %
for j=1:5
InputImage=imread(strcat(‘train\‘‘orl_‘num2str(i)‘_00‘num2str(j)‘.bmp‘));
gab = rgb2gray(InputImage)
[ca1ch1cv1cd1]=dwt2(gab‘db2‘);
%一次小波变换,保存每幅图像的变换系数
cv1(::ji)=cv1;
ch1(::ji)=ch1;
cd1(::ji)=cd1;
ca(::ji)=ca1;
f=dct2(ca1); %DCT变换
g=abs(f);
h=f(1:71:7); %DCT系数提取
k = k + 1;
allcoor(k:) =h(:);
%total每行保存的是一幅图像
end
end
k = 0;
for i=1:40 %
for j=6:10
InputImage=imread(strcat(‘test\‘‘o
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 30966 1994-04-18 14:07 test\orl_10_10.bmp
文件 30966 1994-04-18 14:07 test\orl_10_6.bmp
文件 30966 1994-04-18 14:07 test\orl_10_7.bmp
文件 30966 1994-04-18 14:07 test\orl_10_8.bmp
文件 30966 1994-04-18 14:07 test\orl_10_9.bmp
文件 30966 1994-04-18 14:07 test\orl_11_10.bmp
文件 30966 1994-04-18 14:07 test\orl_11_6.bmp
文件 30966 1994-04-18 14:07 test\orl_11_7.bmp
文件 30966 1994-04-18 14:07 test\orl_11_8.bmp
文件 30966 1994-04-18 14:07 test\orl_11_9.bmp
文件 30966 1994-04-18 14:07 test\orl_12_10.bmp
文件 30966 1994-04-18 14:07 test\orl_12_6.bmp
文件 30966 1994-04-18 14:07 test\orl_12_7.bmp
文件 30966 1994-04-18 14:07 test\orl_12_8.bmp
文件 30966 1994-04-18 14:07 test\orl_12_9.bmp
文件 30966 1994-04-18 14:07 test\orl_13_10.bmp
文件 30966 1994-04-18 14:07 test\orl_13_6.bmp
文件 30966 1994-04-18 14:07 test\orl_13_7.bmp
文件 30966 1994-04-18 14:07 test\orl_13_8.bmp
文件 30966 1994-04-18 14:07 test\orl_13_9.bmp
文件 30966 1994-04-18 14:07 test\orl_14_10.bmp
文件 30966 1994-04-18 14:07 test\orl_14_6.bmp
文件 30966 1994-04-18 14:07 test\orl_14_7.bmp
文件 30966 1994-04-18 14:07 test\orl_14_8.bmp
文件 30966 1994-04-18 14:07 test\orl_14_9.bmp
文件 30966 1994-04-18 14:07 test\orl_15_10.bmp
文件 30966 1994-04-18 14:07 test\orl_15_6.bmp
文件 30966 1994-04-18 14:07 test\orl_15_7.bmp
文件 30966 1994-04-18 14:07 test\orl_15_8.bmp
文件 30966 1994-04-18 14:07 test\orl_15_9.bmp
............此处省略378个文件信息
相关资源
- wenli 分析了纹理特征提取方法
- svm_matlab 用SVM算法实现聚类与分类的例
- DoGfilters DOG高斯差分实现物体识别中的
- PCA_SVM 此方法采用经典的PCA对人脸图像
- pca_knn 本方法采用pca进行特征提取
- pca 主成分分析程序
- PCA-SVM
- Harris.rar 特征提取是图像配准的重要步
- hao 调制识别全过程
- tezheng 本人找到的非常好的几何特征提
- FDCT 第二代离散曲波变换的源程序
- pcasvm1
- SMO
- algorithms 我个人收集的各类智能算法
- libsvm-cg 支持向量机参数c和g的优化
- palm-recognition 掌纹识别代码
- FaceRec 基于matlab2008的人脸识别系统
- SVDD LIBSVM中的SVDD(Support vector data de
- Yale_5G Yale
- fsvmPpca-face-Recognition 首先用PCA对ORA人脸
- Dct 主要研究了彩色图像数字水印算法
- gabor-pca 本程序是先用gabor小波变换对
- tezhengtiqu 基于小波变换的特征提取
- face-recognition
- Khan2 数字图像copy-move篡改检测。特征
- PG_BOW_DEMO 图像的特征用到了Dense Sift
-
ob
ject-Recognition-via-Sparse-PCA 利用稀疏 - LS-SVMlab-GA 用遗传算法优化的最小二乘
- SVM_MATLAB SVM算法的MATLAB实现
- SVMyuce matlab支持向量机预测
评论
共有 条评论