comparison annotationCalculatorSrc/testApp.h @ 48:5359e2c0b0fb

Added data from six tracks. Absolute histogram
author Andrew N Robertson <andrew.robertson@eecs.qmul.ac.uk>
date Wed, 09 May 2012 21:55:16 +0100
parents 689704aa55d5
children 8df911733fdc
comparison
equal deleted inserted replaced
47:689704aa55d5 48:5359e2c0b0fb
28 typedef vector<DoubleVector> DoubleMatrix; 28 typedef vector<DoubleVector> DoubleMatrix;
29 DoubleMatrix GroundTruth; 29 DoubleMatrix GroundTruth;
30 30
31 BeatAnnotationReader beatReader; 31 BeatAnnotationReader beatReader;
32 32
33 void processFile(int file);
34
33 void setFilePaths(int fileToLoad); 35 void setFilePaths(int fileToLoad);
34 void readInFiles(); 36 void readInFiles();
35 void processResults(); 37 void processResults();
36 38
37 void drawAlignmentVectors(); 39 void drawAlignmentVectors();
48 50
49 Histogram multiHistogram; 51 Histogram multiHistogram;
50 Histogram matchBackwardsHistogram; 52 Histogram matchBackwardsHistogram;
51 Histogram matchForwardHistogram; 53 Histogram matchForwardHistogram;
52 54
55 Histogram multiAbsTotalHistogram;
56 Histogram matchBackwardsAbsTotalHistogram;
57 Histogram matchForwardAbsTotalHistogram;
58
53 int screenToDraw; 59 int screenToDraw;
54 int histogramWidth, histogramBinNumber; 60 int histogramWidth, histogramBinNumber;
55 61
56 62
57 std::string liveGroundTruthPath, rehearsalGroundTruthPath; 63 std::string liveGroundTruthPath, rehearsalGroundTruthPath;