📄 confmatget.m
字号:
function confMat = confMatGet(desiredOutput, computedOutput)
% confMatGet: Get confusion matrix from recognition result
% Usage: confMat = confMatGet(desiredOutput, computedOutput)
%
% For example:
% desired=[1 1 1 1 1 1 1 1 1 1 1 1 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5];
% computed=[1 5 5 1 1 1 1 1 5 5 1 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 2 5 5 5 5 5 5 5 5 3 5 5 5];
% confMat = confMatGet(desired, computed);
% confMatPlot(confMat);
% Roger Jang, 20060523, 20070504
if nargin<1, selfdemo; return; end
classCount=length(unique(desiredOutput));
confMat=zeros(classCount, classCount);
for i=1:classCount
index=find(desiredOutput==i);
roi=computedOutput(index);
for j=1:classCount
confMat(i,j)=length(find(roi==j));
end
end
% ====== Self demo
function selfdemo
desired=[1 1 1 1 1 1 1 1 1 1 1 1 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 4 5 5 5 5 5 5 5 5 5 5 5 5];
computed=[1 5 5 1 1 1 1 1 5 5 1 2 2 2 2 2 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3 3 3 3 3 3 4 4 4 4 4 4 4 4 4 4 2 5 5 5 5 5 5 5 5 3 5 5 5];
confMat = confMatGet(desired, computed);
confMatPlot(confMat);
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -