资源简介
模式识别4个实验(matlab代码 )1.贝叶斯决策分类器对鸢尾花 2.基于Fisher 准则的线性分类器分析 3.PCA 人脸特征提取与重构 4.设计 C-均值聚类 分器对鸢尾花均值聚类
代码片段和文件信息
function [m_vectorcov_matrix ] = bayes_train(sample)
%FISHER: A program to compute Bayes classification;
%
% IN sample: training sample
%
% OUT m_vector: sample mean vector
% cov_matrix: sample covariance matrix
%
% Reference: Principle and application of pattern recognition,Li Bicheng,2012
%
% Copyright (C) 2017 ISPT% Author: Nie Pengfei
[NsampNfeature] = size(sample);
%% mean vector and covariance matrix
for k = 1 : Nfeature
m_vector(k) = sum(sample(:k))./Nsamp;
for j = 1 : Nfeature
m_j = sum(sample(:k))./Nsamp;
cov_matrix(kj) = ((sample(:k)-m_vector(k))‘ * (sample(:j)-m_j))./(Nsamp-1);
end
end
end
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 3769022 2017-12-05 16:15 ORL人脸图像.zip
文件 486 2017-12-11 18:11 setosa.mat
文件 538 2017-12-11 18:11 versicolor.mat
文件 951008 2017-12-11 18:06 模式识别实验指导书.pdf
文件 212 2017-12-12 11:19 数据说明.txt
文件 4551 2017-08-21 09:40 iris.data
文件 1509 2018-09-29 17:33 fisher.m
文件 3287 2018-09-29 19:44 fisher_test.m
文件 1275 2018-10-16 19:15 pca_main.m
文件 870 2017-12-01 17:06 post_prob.m
文件 757 2018-09-11 20:58 post_prob_main.m
文件 1579 1995-02-23 18:13 att_faces\README
文件 10318 1994-04-18 14:17 att_faces\s1\1.pgm
文件 10318 1994-04-18 14:07 att_faces\s1\10.pgm
文件 10318 1994-04-18 14:17 att_faces\s1\2.pgm
文件 10318 1994-04-18 14:17 att_faces\s1\3.pgm
文件 10318 1994-04-18 14:17 att_faces\s1\4.pgm
文件 10318 1994-04-18 14:17 att_faces\s1\5.pgm
文件 10318 1994-04-18 14:07 att_faces\s1\6.pgm
文件 10318 1994-04-18 14:07 att_faces\s1\7.pgm
文件 10318 1994-04-18 14:07 att_faces\s1\8.pgm
文件 10318 1994-04-18 14:07 att_faces\s1\9.pgm
文件 10318 1994-04-18 14:17 att_faces\s10\1.pgm
文件 10318 1994-04-18 14:07 att_faces\s10\10.pgm
文件 10318 1994-04-18 14:17 att_faces\s10\2.pgm
文件 10318 1994-04-18 14:17 att_faces\s10\3.pgm
文件 10318 1994-04-18 14:17 att_faces\s10\4.pgm
文件 10318 1994-04-18 14:17 att_faces\s10\5.pgm
文件 10318 1994-04-18 14:07 att_faces\s10\6.pgm
文件 10318 1994-04-18 14:07 att_faces\s10\7.pgm
............此处省略434个文件信息
- 上一篇:BP神经网络用于蚊子分类
- 下一篇:ITTI视觉显著性MATLAB代码
相关资源
- 基于pca的图像压缩算法
- 2DPCA的matlab代码
- 基于PCA算法实现人脸识别完整代码文
- matlab xpc 环境PCI板卡驱动编写
- LDPC编译码器Matlab代码及参考资料
- 模型预测控制系统的Matlab设计和实施
- MPC程序总结MATLAB
- MPC_MATLAB_Book.pdf
- 模型预测控制MPC程序
- MATLAB下人脸图像的PCA重构
- LDA与PCA的讲解与matlab演示
- 关于在FPGA上建立SOPC的教程
- 基于PCA的点云位姿估计与粗拼接,m
- 基于PCA的人脸识别matlab)
- Matlab人脸识别-PCA算法
- dpcm算法研究 语音压缩编码算法:差
- 基于PCA对人脸图像做特征选择matlab程
- 基于PCA算法的人脸识别包含人脸库
- MATLAB环境下的MPC源代码
- 表情识别 源码Matlab LBP+LPQ SVM PCA
- 基于PCA算法的人脸识别matlab程序
- SOPC简单跑马灯 LCD液晶显示器
- GPC广义预测控制matlab例程
- matlab toolbox for pca
- ACC_Vehicle_MPC-20191104.zip
- pca实现人脸识别算法matlab
- PCM编码器与PCM解码器的MATLAB实现及性
- PCA+SVM matlab代码 测试通过
- 求稀疏解的matlab代码工具包
- matlab表情识别
评论
共有 条评论