资源简介
改代码用于评估曲线CMC的绘制。
代码片段和文件信息
function cms = EvalCMC( score galLabels probLabels numRanks )
%% cms = EvalCMC( score galLabels probLabels numRanks )
%
% A function for the CMC curve evaluation.
%
% Inputs:
% score: score matrix with rows corresponding to gallery and columns probe.
% galLabels: a vector containing class labels of each gallery sample
% corresponding to rows of the score matrix.
% probLabels: a vector containing class labels of each probe sample
% corresponding to columns of the score matrix.
% numRanks: the maximal number of the matching ranks. Optional.
%
% Outputs:
% cms: the cumulative matching scores.
%
% Version: 1.0
% Date: 2014-07-22
%
% Author: Shengcai Liao
% Institute: National Laboratory of Pattern Recognition
% Institute of Automation Chinese Academy of Sciences
% Email: scliao@nlpr.ia.ac.cn
%% preprocess
if nargin >= 4
numRanks = min(100 min(size(score)));
end
if ~iscolumn(galLabels)
galLabels = galLabels‘;
end
if ~isrow
- 上一篇:siltp 纹理特征提取代码 matlab
- 下一篇:PMSM的matlab仿真
相关资源
- PMSM的matlab仿真
- siltp 纹理特征提取代码 matlab
- MK突变检验MATLAB代码
- Zernike多项式matlab代码
- KNN分类器完整的matlab代码
- 遗传算法优化pid控制器参数的matlab程
- 隐式广义预测控制matlab程序
- JONSWAP海谱模型
- matlab 人工鱼群求解TSP
- MQAM和MPSK误符号率曲线绘制
- 最好用的串口调试助手_MATLAB
- Matlab小波包分解函数
- Matlab自动识别串口设备名称
- 基于峭度的ICA matlab代码程序
-
Simuli
nk电池仿真模型 - RLC电路matlab仿真m文件
- matlab矩阵运算
- 最大匹配matlab程序
- 凸轮仿真加工MATLAB程序
- LCE OCE GCEmatlab代码用于图像分割精度评
- 连续粒子群算法的matlab程序
- 窗口傅里叶正反变换matlab程序
- 改进的Bradley二值化matlab程序
- 改进的bernsen二值化算法
- matlab_webrtc_fullaec.m
- 边缘检测的matlab实现代码
- A*算法最短路径万能通用matlab代码
- 蚁群算法最短路径万能matlab源代码
- MATLAB蚁群算法ACA最短路径-注释完整
- 卡尔曼平滑
评论
共有 条评论