#!/usr/bin/gnuplot set term png set size .75,1 set output "lfw_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 "eigenfaces-original-roc.txt" using 2:1 with lines title "Eigenfaces, original", \ "nowak-original-roc.txt" using 2:1 with lines title "Nowak, original", \ "nowak-funneled-roc.txt" using 2:1 with lines title "Nowak, funneled", \ "merl-roc.txt" using 2:1 with lines title "Merl", \ "combined-roc.txt" using 2:1 with lines title "Merl+Nowak, funneled", \ "combined16.txt" using 2:1 with lines title "Hybrid descriptor-based, funneled", \ "funneled-pixels-roc.txt" using 2:1 with lines title "Pixels/MKL, funneled", \ "funneled-v1-like-roc.txt" using 2:1 with lines title "V1-like/MKL, funneled", \ "guillaumin-ldml.txt" using 2:1 with lines title "LDML, funneled", \ "hybrid_with_sift_aligned.txt" using 2:1 with lines title "Hybrid, aligned", \ "accv09-wolf-hassner-taigman-roc.txt" using 2:1 with lines title "Combined b/g samples based, aligned", \ "kumar_attrs.txt" using 2:1 with lines title "Attribute classifiers", \ "kumar_sims.txt" using 2:1 with lines title "Simile classifiers", \ "kumar_attrs_sims.txt" using 2:1 with lines title "Attribute and simile classifiers", \ "kumar_human_orig.txt" using 2:1 with lines title "Human, funneled", \ "kumar_human_crop.txt" using 2:1 with lines title "Human, cropped", \ "kumar_human_inv.txt" using 2:1 with lines title "Human, inverse mask", \ "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)" # "combined16UF.txt" using 2:1 with lines title "Hybrid descriptor-based, original", \ # "combined16LFW2.txt" using 2:1 with lines title "Hybrid descriptor-based, aligned"