diff annotationCalculatorSrc/testApp.h @ 47:689704aa55d5

Added square and better scrolling through the matrix, better loading of files
author Andrew N Robertson <andrew.robertson@eecs.qmul.ac.uk>
date Wed, 09 May 2012 12:38:00 +0100
parents ba36a1721538
children 5359e2c0b0fb
line wrap: on
line diff
--- a/annotationCalculatorSrc/testApp.h	Tue May 08 23:16:00 2012 +0100
+++ b/annotationCalculatorSrc/testApp.h	Wed May 09 12:38:00 2012 +0100
@@ -30,6 +30,10 @@
 	
 	BeatAnnotationReader beatReader;
 	
+	void setFilePaths(int fileToLoad);
+	void readInFiles();
+	void processResults();
+	
 	void drawAlignmentVectors();
 	
 	PlotTools plotter;
@@ -49,4 +53,14 @@
 	int screenToDraw;
 	int histogramWidth, histogramBinNumber;
 	
+	
+	std::string liveGroundTruthPath, rehearsalGroundTruthPath;
+	std::string liveToRehMultitrackAlignmentPath;
+	std::string liveToRehMatchOFpath, liveToRehMatchOBpath;
+	
+	int squareX, squareY, squareWidth, squareHeight;
+	bool squareBeingDragged;
+	void drawSquare();
+	void setCoordinatesToSquare();
+	
 };