diff annotationCalculatorSrc/testApp.h @ 46:ba36a1721538

Added abs median calculation, match forwards and backwards paths
author Andrew N Robertson <andrew.robertson@eecs.qmul.ac.uk>
date Tue, 08 May 2012 23:16:00 +0100
parents d23685b9e766
children 689704aa55d5
line wrap: on
line diff
--- a/annotationCalculatorSrc/testApp.h	Tue May 08 21:53:11 2012 +0100
+++ b/annotationCalculatorSrc/testApp.h	Tue May 08 23:16:00 2012 +0100
@@ -6,7 +6,7 @@
 #include "MatchMultitrackAnnotationReader.h"
 #include "Histogram.h"
 
-#define NUMBER_OF_SCREENS 3
+#define NUMBER_OF_SCREENS 4
 class testApp : public ofBaseApp{
 
 	public:
@@ -39,10 +39,12 @@
 	void printPlotValues();
 	
 	std::string matchPath;
-	MatchMultitrackAnnotationReader matchNotations;
+	MatchMultitrackAnnotationReader matchBackwardsNotations;
+	MatchMultitrackAnnotationReader matchForwardNotations;
 		
 	Histogram multiHistogram;
-	Histogram matchHistogram;
+	Histogram matchBackwardsHistogram;
+	Histogram matchForwardHistogram;
 	
 	int screenToDraw;
 	int histogramWidth, histogramBinNumber;