-
Notifications
You must be signed in to change notification settings - Fork 0
/
plot_experiment.m
76 lines (56 loc) · 2.25 KB
/
plot_experiment.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
load experiment3
figure;
hold on;
ylim([0 0.9]);
plot (ratio,holiday_map_4096,'r','Linewidth',2);
scatter (ratio,holiday_map_4096,'r','^');
plot (ratio,holiday_map_rerank_qe,'m','Linewidth',2);
scatter (ratio,holiday_map_rerank_qe,'m','^');
% plot (ratio,holiday_map_pure,'Linewidth',1);
% plot (ratio,holiday_map_rerank,'Linewidth',1);
% plot (ratio,holiday_map_rerank_qe,'Linewidth',1);
% plot (ratio,holiday_map_5,'Linewidth',1);
title ('Holiday')
legend ('Method 1(fc4096)','','Method 5(rmac+aml+qe)','')
%legend ('Method 1(fc4096)','Method 1(fc128)','Method 2(rmac)','Method 3(rmac+aml)','Method 4(rmac+aml+qe)','Method 5(rmac+aml_{fc})')
xlabel ('Bounding Box Mean Area Ratio')
ylabel ('mAP')
hold off;
figure;
hold on;
ylim([0 0.9]);
%plot (ratio,oxford5k_map_4096,'r','Linewidth',2);
%scatter (ratio,oxford5k_map_4096,'r','^');
plot (ratio,oxford5k_map_4096,'r','Linewidth',2);
scatter (ratio,oxford5k_map_4096,'r','^');
plot (ratio,oxford5k_map_rerank_qe,'m','Linewidth',2);
scatter (ratio,oxford5k_map_rerank_qe,'m','^');
% plot (ratio,oxford5k_map_pure,'Linewidth',1);
% plot (ratio,oxford5k_map_rerank,'Linewidth',1);
% plot (ratio,oxford5k_map_rerank_qe,'Linewidth',1);
% plot (ratio,oxford5k_map_5,'Linewidth',1);
title ('Oxford5k')
legend ('Method 1(fc4096)','','Method 5(rmac+aml+qe)','')
% legend ('Method 1(fc4096)','Method 1(fc128)','Method 2(rmac)','Method 3(rmac+aml)','Method 4(rmac+aml+qe)','Method 5(rmac+aml_{fc})')
xlabel ('Bounding Box Mean Area Ratio')
ylabel ('mAP')
hold off;
figure;
hold on;
ylim([0 0.9]);
%plot (ratio,paris6k_map_128,'r','Linewidth',2);
%scatter (ratio,paris6k_map_128,'r','v');
plot (ratio,paris6k_map_4096,'r','Linewidth',2);
scatter (ratio,paris6k_map_4096,'r','^');
plot (ratio,paris6k_map_rerank_qe,'m','Linewidth',2);
scatter (ratio,paris6k_map_rerank_qe,'m','^');
% plot (ratio,paris6k_map_pure,'Linewidth',1);
% plot (ratio,paris6k_map_rerank,'Linewidth',1);
% plot (ratio,paris6k_map_rerank_qe,'Linewidth',1);
% plot (ratio,paris6k_map_5,'Linewidth',1);
title ('Paris6k')
legend ('Method 1(fc4096)','','Method 5(rmac+aml+qe)','')
% legend ('Method 1(fc4096)','Method 1(fc128)','Method 2(rmac)','Method 3(rmac+aml)','Method 4(rmac+aml+qe)','Method 5(rmac+aml_{fc})')
xlabel ('Bounding Box Mean Area Ratio')
ylabel ('mAP')
hold off;