Remove the mtp_stress_test command, integrated what it did in mtp_example.
[mtp.git] / mtp_example.cc
index 9e8db82..21d6443 100644 (file)
@@ -25,6 +25,7 @@
 #include <iostream>
 #include <fstream>
 #include <stdlib.h>
+#include <string.h>
 
 using namespace std;
 
@@ -41,13 +42,11 @@ scalar_t noisy_score(scalar_t true_score, scalar_t erroneous_score,
   }
 }
 
-int main(int argc, char **argv) {
+void create_light_test(MTPTracker *tracker) {
   int nb_locations = 7;
   int nb_time_steps = 8;
   int motion_amplitude = 1;
 
-  MTPTracker *tracker = new MTPTracker();
-
   tracker->allocate(nb_time_steps, nb_locations);
 
   // We define the spatial structure by stating what are the possible
@@ -133,6 +132,55 @@ int main(int argc, char **argv) {
     ofstream out_tracker("tracker.dat");
     tracker->write(&out_tracker);
   }
+}
+
+void create_heavy_test(MTPTracker *tracker) {
+  int nb_locations = 100;
+  int nb_time_steps = 1000;
+
+  tracker->allocate(nb_time_steps, nb_locations);
+
+  for(int l = 0; l < nb_locations; l++) {
+    for(int m = 0; m < nb_locations; m++) {
+      tracker->allowed_motions[l][m] = (drand48() < 0.1);
+    }
+  }
+
+  for(int t = 0; t < nb_time_steps; t++) {
+    for(int l = 0; l < nb_locations; l++) {
+      tracker->entrances[t][l] = drand48() < 0.01;
+      tracker->exits[t][l] = drand48() < 0.01;
+    }
+  }
+
+  tracker->build_graph();
+
+  for(int t = 0; t < nb_time_steps; t++) {
+    for(int l = 0; l < nb_locations; l++) {
+      tracker->detection_scores[t][l] = scalar_t(drand48()) - 0.95f;
+    }
+  }
+}
+
+int main(int argc, char **argv) {
+  int stress_test;
+
+  if(argc == 1) {
+    stress_test = 0;
+  } else if(argc == 2 && strcmp(argv[1], "stress") == 0) {
+    stress_test = 1;
+  } else {
+    cerr << "mtp_examples [stress]" << endl;
+    exit(EXIT_FAILURE);
+  }
+
+  MTPTracker *tracker = new MTPTracker();
+
+  if(stress_test) {
+    create_heavy_test(tracker);
+  } else {
+    create_light_test(tracker);
+  }
 
   // Performs the tracking per se