#!/usr/bin/gnuplot set term png set size .75,1 set output "lfw_unrestricted_roc_curve.png" set xtics .1 set ytics .1 set grid set size ratio -1 set ylabel "true positive rate" set xlabel "false positive rate" set key right bottom plot "guillaumin-ldmlmknn.txt" using 2:1 with lines title "LDML+MkNN, funneled (u)", \ "multishot_unrestricted_bmvc09.txt" using 2:1 with lines title "Multishot combined, aligned (u)", \ "multishot_unrestricted_single_feature_bmvc09.txt" using 2:1 with lines title "LBP multishot, aligned (u)"