代码位置:tracker_benchmark_v1.0/CCC下的my_plot.m
a1=zeros(1,numSeq);
for i = 1:numSeq
% i
for j = 1:numTrk
load(['D:\zlc\code\database\tracker_benchmark_v1.0\CCC\' trackers{j}.name '\' seqs{i}.name '.mat']);
%求取平均CLE
a1(i)=mean(errCenter)
plot(errCenter,'color',plotDrawStyle{j}.color, 'lineStyle', plotDrawStyle{j}.lineStyle,'lineWidth', 3);
% plot(errCoverage,'color',plotDrawStyle{j}.color, 'lineStyle', plotDrawStyle{j}.lineStyle,'lineWidth', 1);
hold on;
end
legend('RA-MFML', 'HCFT*');
xlabel('Frame size');
title(seqs{i}.name);
ylabel('Center Location Error');
% ylabel('Overlap Rate');
% pause;
% if strcmp(seqs{i}.name, 'motorrolling')
% pause;
% end
close all
end
Avg_CLE=mean(a1);