From c8749235522338f1cbc11417809e63f8e013f272 Mon Sep 17 00:00:00 2001 From: Manuel Guenther <manuel.guenther@idiap.ch> Date: Tue, 19 Feb 2013 17:59:31 +0100 Subject: [PATCH] Added notification about the plots that are created. --- faceverify/dct_ubm.py | 1 + faceverify/eigenface.py | 1 + faceverify/gabor_phase.py | 1 + 3 files changed, 3 insertions(+) diff --git a/faceverify/dct_ubm.py b/faceverify/dct_ubm.py index 48a2ed0..e1e7dc4 100644 --- a/faceverify/dct_ubm.py +++ b/faceverify/dct_ubm.py @@ -215,6 +215,7 @@ def main(): # save plot to file pyplot.savefig("dct_ubm.png") + print "Saved figure 'dct_ubm.png'" # show ROC curve. # enable it if you like. This will open a window and display the ROC curve diff --git a/faceverify/eigenface.py b/faceverify/eigenface.py index 61633bf..0983606 100644 --- a/faceverify/eigenface.py +++ b/faceverify/eigenface.py @@ -141,6 +141,7 @@ def main(): # save plot to file pyplot.savefig("eigenface.png") + print "Saved figure 'eigenface.png'" # show ROC curve. # enable it if you like. This will open a window and display the ROC curve diff --git a/faceverify/gabor_phase.py b/faceverify/gabor_phase.py index 732d599..6372b83 100644 --- a/faceverify/gabor_phase.py +++ b/faceverify/gabor_phase.py @@ -132,6 +132,7 @@ def main(): # save plot to file pyplot.savefig("gabor_phase.png") + print "Saved figure 'gabor_phase.png'" # show ROC curve. # enable it if you like. This will open a window and display the ROC curve -- GitLab