资源简介
模式识别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代码
相关资源
- MPC路径跟踪
- 高光谱图像pca分析特征提取
- pca源码matlab
- PCA人脸识别Eigenface特征脸Matlab
- Ldpc编译码方案MATLAB仿真
- 基于模型预测控制的车辆轨迹跟踪问
- RPCA图像去噪算法
- MATLAB 对iris数据集进行PCA
- 基于贝叶斯决策的分类
- 分布式预测控制程序
- 遥感影像融合_数字图像处理的matlab程
- 基于MATLAB的低密度奇偶校LDPC验码编码
- 基于TE过程的PCA程序matlab
- 基于PCA和SVM的人脸识别.zip
- Model Predictive Control System Design using M
- PCA算法实现人脸识别基于matlab GUI界面
- 基于matlab的人脸识别271850
- 2D2DPCA人脸识别matlab代码/ORL库
- PCA人脸识别MATLAB代码/ORL库
- Model Predictive Control System Design and Imp
- matlab预测控制工具箱使用手册
- PCA人脸识别论文附MATLAB程序
- ssprop-3.0.1.rar
- g.726 源代码 matlab
- KPCA matlab实现
- 基于K-L变换的人脸识别系统
- 基于Matlab的PCM系统设计与仿真
- 基于PCA使用Yale人脸数据库的人脸识别
- 降维技术matlab工具箱
- 音频信号编码成PCM
评论
共有 条评论