资源简介
LDA 模式识别 matlab
代码片段和文件信息
iNum_Train_PerSample = 3;%训练样本数
iNum_Test_PerSample = 8;%测试样本数
iHeight = 24;
iWidth = 24;
iClass = 15;%人脸特征类别数
iNum_PerSample = 11;%每一类所含样本个数
iDim_Image = iHeight * iWidth;
Image = zeros(iDim_Image iClass iNum_PerSample);%零矩阵
fprintf(‘********** Step 1 Read Images **********\n‘);
for i = 1 : iClass
for j = 1 : iNum_PerSample
if i < 10
filestr = strcat(‘0‘ int2str(i));%外部是连接字符串函数,内部是转化为串
else
filestr = int2str(i);
end
str_Path_Image = [‘F:\FaceRecognitionSystem\人脸库\YALE\subject‘ filestr];
str_Path_Image = [str_Path_Image ‘_‘];
str_Path_Image = [str_Path_Image int2str(j)];
B = imread(str_Path_Image ‘bmp‘);%读取bmp格式的图像到内存中
B=imresize(B[24 24]);%对图像进行缩放
- 上一篇:k均值聚类分析模型以及相关代码实现
- 下一篇:风力发电模型仿真MATLAB
相关资源
- PCALDA PCA+LDA经典人脸识别算法
- face 收集的最全的人脸识别代码 有小
- plslda 偏最小二乘线性判别分析
- PCA_LDA_Face_Verification PCA+LDA人脸识别
- ga 基于遗传算法和距离的特征选择
- pattern-classification 美国Richard O.Duda编著
- PCALDA
- Zernike Zernike矩是具有尺度、移位和旋
- LDA 使用matlab实现的LDA(线性判别分析
- K-means聚类分析Iris数据集模式识别
- 线性判别式分析(Linear Discriminant An
- 模式识别Matlab源码
- 模式识别matlab工具箱
- 数字0~9模式识别的matlab代码
- 基于LDA的人脸识别matlab源代码
- 哈工大模式识别--k均值算法
- 模式识别fisher判别准则
- 模式识别 SVM MATLAB程序
- LDA人脸识别matlab程序代码
- 模式识别》实验报告-贝叶斯分类
- 《模式识别与智能计算》MATLAB技术实
- LDA分类器 MATLAB
- libsvm的matlab版实现多类分类超级经典
- 模式识别实验 贝叶斯 fisher bayes
- 线性判别分析matlab代码实现
- 模式识别与智能计算的matlab实现源代
- 基于Elman神经网络的电力负荷预测的
评论
共有 条评论