changeset 320:97387af51350

Patch from Dan Stowell: print label as well as values
author Chris Cannam
date Tue, 23 Aug 2011 16:18:13 +0100
parents 7920b9519fd9
children bb29681a8b51
files host/vamp-simple-host.cpp
diffstat 1 files changed, 1 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/host/vamp-simple-host.cpp	Thu Aug 18 12:43:01 2011 +0100
+++ b/host/vamp-simple-host.cpp	Tue Aug 23 16:18:13 2011 +0100
@@ -537,6 +537,7 @@
         for (unsigned int j = 0; j < features[output][i].values.size(); ++j) {
             (out ? *out : cout) << " " << features[output][i].values[j];
         }
+        (out ? *out : cout) << " " << features[output][i].label;
 
         (out ? *out : cout) << endl;
     }