forked from pkdogcom/fddb-evaluate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
discROC.p
57 lines (54 loc) · 3.61 KB
/
discROC.p
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
# Compare your discrete ROC curves with other methods
# At terminal: gnuplot discROC.p
set terminal png size 1280, 960 enhanced font 'Verdana,18'
set size 1,1
set xtics 500
set ytics 0.1
set grid
set ylabel "True positive rate"
set xlabel "False positive"
set xr [0:2000]
set yr [0:1.0]
set key below
set output "discROC-compare.png"
plot "tempDiscROC.txt" using 2:1 title 'Ours' with linespoints pointinterval 50 lw 3 , \
"rocCurves/HR-ER-DiscROC.txt" using 2:1 title 'HR-ER' with lines lw 2 , \
"rocCurves/HR-DiscROC.txt" using 2:1 title 'HR' with lines lw 2 , \
"rocCurves/DeepIRDiscROC(2).txt" using 2:1 title 'DeepIR' with lines lw 2 , \
"rocCurves/FastCNNDisc.txt" using 2:1 title 'FastCNN' with lines lw 2 , \
"rocCurves/mxnet-face-fr50-DiscROC.txt" using 2:1 title 'mxnet' with lines lw 2 , \
"rocCurves/UnitBox-DiscROC.txt" using 2:1 title 'UnitBox' with lines lw 2 , \
"rocCurves/resnet50-hnm-DiscROC.txt" using 2:1 title 'Xiaomi' with lines lw 2 , \
"rocCurves/Conv3d_DiscROC.txt" using 2:1 title 'Conv3D' with lines lw 2 , \
"rocCurves/frcnDiscROC.txt" using 2:1 title 'Faster RCNN' with lines lw 2 , \
"rocCurves/Hyperface_DiscROC.txt" using 2:1 title 'Hyperface' with lines lw 2 , \
"rocCurves/MTCNN-DiscROC.txt" using 2:1 title 'Zhang et al.' with lines lw 2 , \
"rocCurves/cvit_DiscROC.txt" using 1:2 title 'Kumar et al.' with lines lw 2 , \
"rocCurves/FDDB_FSA4_2_DiscROC.txt" using 2:1 title 'Barbu et al. 2' with lines lw 2 , \
"rocCurves/DP2MFD_DiscROC.txt" using 2:1 title 'DP2MFD' with lines lw 2 , \
"rocCurves/CCFDiscROC.txt" using 2:1 title 'CCF' with lines lw 2 , \
"rocCurves/Faceness-DiscROC.txt" using 2:1 title 'Faceness' with lines lw 2 , \
"rocCurves/npdfaceDiscROC.txt" using 2:1 title 'NPDFace' with lines lw 2 , \
"rocCurves/MultiresHPM-DiscROC.txt" using 2:1 title 'MultiresHPM' with lines lw 2 , \
"rocCurves/FDDB_FSA4_1_DiscROC.txt" using 2:1 title 'Barbu et al.' with lines lw 2 , \
"rocCurves/DDFD_DiscROC.txt" using 2:1 title 'DDFD' with lines lw 2 , \
"rocCurves/CasCNN-DiscROC.txt" using 2:1 title 'CascadeCNN' with lines lw 2 , \
"rocCurves/jjyan_allROC_DiscROC.txt" using 2:1 title 'Yan et al.' with lines lw 2 , \
"rocCurves/AcfDiscROC.txt" using 2:1 title 'ACF-multiscale' with lines lw 2 , \
"rocCurves/pico-DiscROC.txt" using 2:1 title 'Pico' with lines lw 2 , \
"rocCurves/HeadHunter_DiscROC.txt" using 2:1 title 'HeadHunter' with lines lw 2 , \
"rocCurves/JointCascade_DiscROC.txt" using 2:1 title 'Joint Cascade' with lines lw 2 , \
"rocCurves/BoostedExamplerBased-DiscROC.txt" using 2:1 title 'Boosted Exemplar' with lines lw 2 , \
"rocCurves/SURF_GentleBoost_FTDiscROC.txt" using 2:1 title 'SURF-frontal' with lines lw 2 , \
"rocCurves/SURF_GentleBoost_MVDiscROC.txt" using 2:1 title 'SURF-multiview' with lines lw 2 , \
"rocCurves/PEPAdapt_DiscROC.txt" using 2:1 title 'PEP-Adapt' with lines lw 2 , \
"rocCurves/XZJY_DiscROC.txt" using 2:1 title 'XZJY' with lines lw 2 , \
"rocCurves/dr40DiscROC.txt" using 2:1 title 'Zhu et al.' with lines lw 2 , \
"rocCurves/santiDiscROC.txt" using 2:1 title 'Segui et al.' with lines lw 2, \
"rocCurves/koestingerDiscROC.txt" using 2:1 title 'Koestinger et al.' with lines lw 2, \
"rocCurves/LiIntelDiscROC.txt" using 2:1 title 'Li et al.' with lines lw 2, \
"rocCurves/jainDiscROC.txt" using 2:1 title 'Jain et al.' with lines lw 2, \
"rocCurves/subburamanDiscROC.txt" using 2:1 title 'Subburaman et al.' with lines lw 2, \
"rocCurves/ViolaJonesScore_n0_DiscROC.txt" using 2:1 title 'Viola-Jones' with lines lw 2, \
"rocCurves/MikolajczykDiscROC.txt" using 2:1 title 'Mikolajczyk et al.' with lines lw 2, \
"rocCurves/kienzleDiscROC.txt" using 2:1 title 'Kienzle et al.' with lines lw 2