资源简介
资源给出程序的训练集、测试集以及matlab程序,给出说明文档和程序运行视频。
代码片段和文件信息
function T = CreateDatabase(TrainDatabasePath)
% Align a set of face images (the training set T1 T2 ... TM )
%
% Description: This function reshapes all 2D images of the training database
% into 1D column vectors. Then it puts these 1D column vectors in a row to
% construct 2D matrix ‘T‘.
%
%
% Argument: TrainDatabasePath - Path of the training database
%
% Returns: T - A 2D matrix containing all 1D image vectors.
% Suppose all P images in the training database
% have the same size of MxN. So the length of 1D
% column vectors is MN and ‘T‘ will be a MNxP 2D matrix.
%
% See also: STRCMP STRCAT RESHAPE
% Original version by Amir Hossein Omidvarnia October 2007
% Email: aomidvar@ece.ut.ac.ir
%%%%%%%%%%%%%%%%%%%%%%%% File management
TrainFiles = dir(TrainDatabasePath);
Train_Number = 0;
for i = 1:size(TrainFiles1)
if not(strcmp(TrainFiles(i).name‘.‘)|strcmp(TrainFiles(i).name‘..‘)|strcmp(TrainFiles(i).name‘Thumbs.db‘))
Train_Number = Train_Number + 1; % Number of all images in the training database
end
end
%%%%%%%%%%%%%%%%%%%%%%%% Construction of 2D matrix from 1D image vectors
T = [];
for i = 1 : Train_Number
% I have chosen the name of each image in databases as a corresponding
% number. However it is not mandatory!
str = int2str(i);
str = strcat(‘\‘str‘.jpg‘);
str = strcat(TrainDatabasePathstr);
img = imread(str);
img = rgb2gray(img);
[irow icol] = size(img);
temp = reshape(img‘irow*icol1); % Reshaping 2D images into 1D image vectors
T = [T temp]; % ‘T‘ grows after each turn (200*28020)
end
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2015-02-17 09:36 0PCA_ba
文件 1877 2008-04-30 16:36 0PCA_ba
文件 3319 2013-10-08 09:26 0PCA_ba
文件 504464 2014-10-12 14:08 0PCA_ba
文件 539921 2014-10-12 14:02 0PCA_ba
文件 2511 2013-10-08 09:36 0PCA_ba
文件 2784 2013-10-08 12:16 0PCA_ba
目录 0 2015-02-17 10:42 0PCA_ba
文件 6264 1994-10-05 14:21 0PCA_ba
文件 6852 1994-10-05 13:49 0PCA_ba
文件 6007 1994-10-05 15:21 0PCA_ba
文件 5680 2008-07-01 23:48 0PCA_ba
文件 6525 1994-10-05 14:53 0PCA_ba
文件 4341 1994-10-05 15:39 0PCA_ba
文件 5876 1994-10-05 14:11 0PCA_ba
文件 4352 1994-10-05 15:09 0PCA_ba
文件 6725 1994-10-05 15:19 0PCA_ba
文件 5570 1994-10-05 14:47 0PCA_ba
文件 43520 2009-07-22 19:04 0PCA_ba
目录 0 2015-02-17 10:42 0PCA_ba
文件 6391 1994-10-05 14:21 0PCA_ba
文件 4223 1994-10-05 15:38 0PCA_ba
文件 5967 1994-10-05 14:10 0PCA_ba
文件 5870 1994-10-05 14:11 0PCA_ba
文件 4363 1994-10-05 15:09 0PCA_ba
文件 4360 1994-10-05 15:08 0PCA_ba
文件 6681 1994-10-05 15:19 0PCA_ba
文件 6693 1994-10-05 15:19 0PCA_ba
文件 5417 1994-10-05 14:47 0PCA_ba
文件 5448 1994-10-05 14:47 0PCA_ba
文件 6827 1994-10-05 13:49 0PCA_ba
............此处省略13个文件信息
- 上一篇:SOPC简单跑马灯 LCD液晶显示器
- 下一篇:matlab中文手册
相关资源
- matlab中文手册
- 神经网络的手写数字识别USPS数据集
- Matlab R2015b for Mac破解文件
- matlab实现梯度倒数加权滤波
- 链路调度matlab仿真程序
- MATLAB智能算法30个案例分析第2版源代
- 盒维计算的matlab 程序
- 基于matlab的斜抛运动轨迹分析(考虑
- mimo ofdm的MATLAB仿真
- 掺铒光纤放大器数值计算matlab.zip
- 车牌识别Matlab代码61833
- 基于MATLAB的车牌识别代码
- 802.11a_simulation with matlab
- 图像处理基础算法源代码MATLAB集合
- 图片二维小波变换的分解与重构_mat
- 13位巴克码产生波形及其模糊图 matl
- matlab量化投资基础知识
- 人工神经网络MATLAB程序代码
- MATLAB实现曼切斯特编码,密勒编码,
- matlab海明编码,crc校验 带gui
- Matlab EMD工具箱+时频分析TFTB工具箱
-
用Matlab中的Simuli
nk对AM波进行调制解 - 基于MATLAB的运动控制系统的仿真软件
- 基于matlab的车牌识别内含matlab代码以
- 基于matlab的图像拼接含matlab代码以及
- 薛定宇--MATLAB代码
- 《精通MATLAB GUI设计(第2版)》
- Matlab短学期作业报告
- 遗传退火算法法MATLAB程序设计
- PESQ与LSD评价
评论
共有 条评论