#!/usr/bin/gnuplot

set term png
set output "roc_curve.png" 
set key right bottom
set xtics .1
set ytics .1
set grid
set size ratio -1
set ylabel "true positive rate"
set xlabel "false positive rate"
plot "MBGS_L2_LBP_mean.txt" using 2:1 with lines title "MBGS (mean) LBP", \
	"MBGS_L2_FPLBP_mean.txt" using 2:1 with lines title "MBGS (mean) FPLBP", \
	"MIN_DIST_LBP.txt" using 2:1 with lines title "mindist LBP", \
	"MIN_DIST_FPLBP.txt" using 2:1 with lines  title "mindist FPLBP", \
	"U1U2f_LBP.txt" using 2:1 with lines  title "||U1'U2|| LBP", \
	"U1U2f_FPLBP.txt" using 2:1 with lines  title "||U1'U2|| FPLBP", \
	"APEM-FUSION.txt" using 2:1 with lines  title "APEM FUSION", \
	"STFRD+PMML.txt" using 2:1 with lines  title "STFRD+PMML", \
        "VSOF+OSS(Adaboost).txt" using 2:1 with lines  title "VSOF+OSS(Adaboost)",\
	"youtube_roc_deepface_single.txt" using 2:1 with lines title "DeepFace-single",\
	"ddml_lbp_restricted.txt" using 2:1 with lines title "DDML (LBP)",\
	"ddml_combined_restricted.txt" using 2:1 with lines title "DDML (combined)",\
        "EigenPEP.txt" using 2:1 with lines title "EigenPEP",\
	"lm3l_restricted_ytf.txt" using 2:1 with lines title "LM3L",\
	"3DMM_CNN_ytf.txt" using 2:1 with lines title "3DMM_CNN" 
