Added README.md
[mtp.git] / mtp_tracker.h
index 01c831b..78df0fc 100644 (file)
@@ -33,11 +33,13 @@ using namespace std;
 #include "mtp_graph.h"
 
 class MTPTracker {
-  scalar_t **_detection_score;
-  int **_allowed_motion;
-  int *_entrances, *_exits;
-
   MTPGraph *_graph;
+
+  // The edges will be ordered as follows: First the nb_locations *
+  // nb_time_steps edges inside the node pairs, which will have
+  // lengths equal to the opposite of the detection scores, then the
+  // edges between these node pairs, and finally the edges from source
+  // and to sink.
   scalar_t *_edge_lengths;
 
   int early_pair_node(int t, int l);
@@ -47,7 +49,7 @@ public:
 
   // The spatial structure
   int nb_locations, nb_time_steps;
-  int **allowed_motion;
+  int **allowed_motions;
   int **entrances, **exits;
 
   // The detection scores at each location and time