The Makefile now accepts VERBOSE=yes.
[mtp.git] / mtp.cc
diff --git a/mtp.cc b/mtp.cc
index 529ba80..dab3292 100644 (file)
--- a/mtp.cc
+++ b/mtp.cc
 
 // Multi-Tracked Path
 
-// #define VERBOSE
-
 #include <iostream>
 #include <fstream>
-#include <cmath>
-#include <stdio.h>
-#include <stdlib.h>
-#include <float.h>
 
 using namespace std;
 
-typedef float scalar_t;
-
-#ifdef DEBUG
-#define ASSERT(x) if(!(x)) { \
-  std::cerr << "ASSERT FAILED IN " << __FILE__ << ":" << __LINE__ << endl; \
-  abort(); \
-}
-#else
-#define ASSERT(x)
-#endif
-
-class Vertex;
-
-class Edge {
-public:
-  int occupied;
-  scalar_t length, work_length;
-  Vertex *terminal_vertex;
-  Edge *next, *pred;
-};
-
-class Vertex {
-public:
-  int id;
-  // These are the leaving edges
-  Edge *first_edge;
-  scalar_t distance;
-
-  Vertex *pred_vertex;
-  Edge *pred_edge;
-
-  Vertex() { first_edge = 0; }
-
-  inline void add_edge(Edge *e) {
-    if(first_edge) { first_edge->pred = e; }
-    e->next = first_edge;
-    e->pred = 0;
-    first_edge = e;
-  }
+#include "tracker.h"
 
-  inline void del_edge(Edge *e) {
-    if(e == first_edge) { first_edge = e->next; }
-    if(e->pred) { e->pred->next = e->next; }
-    if(e->next) { e->next->pred = e->pred; }
-  }
-};
-
-class Graph {
-public:
-  int nb_vertices;
-  Edge *edge_heap;
-  Vertex *vertices;
-  Vertex *source, *sink;
-
-  Graph(int nb_vertices, int nb_edges, int *from, int *to, scalar_t *lengths,
-        int source, int sink);
-  ~Graph();
-
-  void initialize_work_lengths();
-  void update_work_length();
-  void find_shortest_path();
-  void find_best_paths();
-  void print();
-  void print_occupied_edges();
-};
-
-void Graph::print() {
-  for(int n = 0; n < nb_vertices; n++) {
-    for(Edge *e = vertices[n].first_edge; e; e = e->next) {
-      cout << n << " -> " << e->terminal_vertex->id << " " << e->length << endl;
-    }
-  }
-}
+//////////////////////////////////////////////////////////////////////
 
-void Graph::print_occupied_edges() {
-  for(int n = 0; n < nb_vertices; n++) {
-    for(Edge *e = vertices[n].first_edge; e; e = e->next) {
-      if(e->occupied) {
-        int a = n, b = e->terminal_vertex->id;
-        if(a > b) { int c = a; a = b; b = c; }
-        cout << a << " " << b << endl;
-      }
-    }
+scalar_t detection_score(int true_label, scalar_t flip_noise) {
+  if((true_label > 0) == (drand48() < flip_noise)) {
+    return   1.0 + 0.2 * (drand48() - 0.5);
+  } else {
+    return - 1.0 + 0.2 * (drand48() - 0.5);
   }
 }
 
-Graph::Graph(int nb_vrt, int nb_edges,
-             int *from, int *to, scalar_t *lengths,
-             int src, int snk) {
-  nb_vertices = nb_vrt;
-
-  edge_heap = new Edge[nb_edges];
-  vertices = new Vertex[nb_vertices];
-
-  source = &vertices[src];
-  sink = &vertices[snk];
-
-  for(int v = 0; v < nb_vertices; v++) {
-    vertices[v].id = v;
-  }
-
-  for(int e = 0; e < nb_edges; e++) {
-    vertices[from[e]].add_edge(&edge_heap[e]);
-    edge_heap[e].occupied = 0;
-    edge_heap[e].length = lengths[e];
-    edge_heap[e].terminal_vertex = &vertices[to[e]];
-  }
-}
+int main(int argc, char **argv) {
+  int nb_locations = 6;
+  int nb_time_steps = 5;
+  int motion_amplitude = 1;
 
-Graph::~Graph() {
-  delete[] vertices;
-  delete[] edge_heap;
-}
+  Tracker *tracker = new Tracker(nb_time_steps, nb_locations);
 
-void Graph::initialize_work_lengths() {
-  scalar_t length_min = 0;
-  for(int n = 0; n < nb_vertices; n++) {
-    for(Edge *e = vertices[n].first_edge; e; e = e->next) {
-      length_min = min(e->length, length_min);
+  for(int l = 0; l < nb_locations; l++) {
+    for(int k = 0; k < nb_locations; k++) {
+      tracker->allowed_motion[l][k] = abs(l - k) <= motion_amplitude;
     }
+    tracker->entrances[0] = 1;
+    tracker->exits[nb_locations - 1] = 1;
   }
-  for(int n = 0; n < nb_vertices; n++) {
-    for(Edge *e = vertices[n].first_edge; e; e = e->next) {
-      e->work_length = e->length - length_min;
-    }
-  }
-}
 
-void Graph::update_work_length() {
-  for(int n = 0; n < nb_vertices; n++) {
-    scalar_t d = vertices[n].distance;
-    for(Edge *e = vertices[n].first_edge; e; e = e->next) {
-      e->work_length += d - e->terminal_vertex->distance;
-    }
-  }
-}
+  tracker->build_graph();
 
-void Graph::find_shortest_path() {
-  Vertex **front = new Vertex *[nb_vertices];
-  Vertex **new_front = new Vertex *[nb_vertices];
-  Vertex **tmp_front;
-  int tmp_front_size;
-  Vertex *v, *tv;
-  scalar_t d;
+  // We generate synthetic detection scores at location
+  // nb_locations/2, with 5% false detection (FP or FN)
 
-#ifdef DEBUG
-  for(int n = 0; n < nb_vertices; n++) {
-    for(Edge *e = vertices[n].first_edge; e; e = e->next) {
-      if(e->work_length < 0) {
-        cerr << "DEBUG error in find_shortest_path: Edge fixed lengths have to be positive."
-             << endl;
-        abort();
-      }
+  for(int t = 0; t < nb_time_steps; t++) {
+    for(int l = 0; l < nb_locations; l++) {
+      tracker->detection_score[t][l] = detection_score(-1, 0.95);
     }
-  }
-#endif
-
-  for(int v = 0; v < nb_vertices; v++) {
-    vertices[v].distance = FLT_MAX;
-    vertices[v].pred_vertex = 0;
-    vertices[v].pred_edge = 0;
+    tracker->detection_score[t][nb_locations/2] = detection_score(1, 0.95);
   }
 
-  int front_size = 0, new_front_size;
-  front[front_size++] = source;
-  source->distance = 0;
+  tracker->track();
 
-  do {
-    new_front_size = 0;
-    for(int f = 0; f < front_size; f++) {
-      v = front[f];
-      for(Edge *e = v->first_edge; e; e = e->next) {
-        d = v->distance + e->work_length;
-        tv = e->terminal_vertex;
-        if(d < tv->distance) {
-          tv->distance = d;
-          tv->pred_vertex = v;
-          tv->pred_edge = e;
-          new_front[new_front_size++] = tv;
-        }
-      }
+  for(int t = 0; t < tracker->nb_trajectories(); t++) {
+    cout << "TRAJECTORY "
+         << t
+         << " [starting " << tracker->trajectory_entrance_time(t)
+         << ", score " << tracker->trajectory_score(t) << "]";
+    for(int u = 0; u < tracker->trajectory_duration(t); u++) {
+      cout << " " << tracker->trajectory_location(t, u);
     }
-
-    tmp_front = new_front;
-    new_front = front;
-    front = tmp_front;
-
-    tmp_front_size = new_front_size;
-    new_front_size = front_size;
-    front_size = tmp_front_size;
-  } while(front_size > 0);
-
-  delete[] front;
-  delete[] new_front;
-}
-
-void Graph::find_best_paths() {
-  scalar_t total_length;
-
-  initialize_work_lengths();
-
-  do {
-#ifdef VERBOSE
-    print();
-#endif
-
-    total_length = 0.0;
-    find_shortest_path();
-    update_work_length();
-
-    // Do we reach the sink?
-    if(sink->pred_edge) {
-
-#ifdef VERBOSE
-      cout << "VERBOSE there is a path reaching the sink" << endl;
-#endif
-
-      // If yes, compute the length of the best path
-      for(Vertex *v = sink; v->pred_edge; v = v->pred_vertex) {
-        total_length += v->pred_edge->length;
-      }
-
-#ifdef VERBOSE
-      cout << "VERBOSE total_length " << total_length << endl;
-#endif
-
-      // If that length is negative
-      if(total_length < 0.0) {
-        // Invert all the edges along the best path
-        for(Vertex *v = sink; v->pred_edge; v = v->pred_vertex) {
-          Edge *e = v->pred_edge;
-          e->terminal_vertex = v->pred_vertex;
-          e->occupied = 1 - e->occupied;
-          e->length = - e->length;
-          e->work_length = - e->work_length;
-          v->pred_vertex->del_edge(e);
-          v->add_edge(e);
-        }
-      }
-    }
-  } while(total_length < 0.0);
-}
-
-//////////////////////////////////////////////////////////////////////
-
-int main(int argc, char **argv) {
-
-  if(argc < 2) {
-    cerr << argv[0] << " <graph file>" << endl;
-    exit(EXIT_FAILURE);
+    cout << endl;
   }
 
-  ifstream *file = new ifstream(argv[1]);
-
-  int nb_edges, nb_vertices;
-  int source, sink;
-
-  if(file->good()) {
-
-    (*file) >> nb_vertices >> nb_edges;
-    (*file) >> source >> sink;
-
-    cout << "INPUT nb_edges " << nb_edges << endl;
-    cout << "INPUT nb_vertices " << nb_vertices << endl;
-    cout << "INPUT source " << source << endl;
-    cout << "INPUT sink " << sink << endl;
-
-    scalar_t *el = new scalar_t[nb_edges];
-    int *ea = new int[nb_edges];
-    int *eb = new int[nb_edges];
-
-    for(int e = 0; e < nb_edges; e++) {
-      (*file) >> ea[e] >> eb[e] >> el[e];
-      cout << "INPUT_EDGE " << ea[e] << " " << eb[e] << " " << el[e] << endl;
-    }
-
-    Graph graph(nb_vertices, nb_edges, ea, eb, el, source, sink);
-
-    graph.find_best_paths();
-    graph.print_occupied_edges();
-
-    delete[] el;
-    delete[] ea;
-    delete[] eb;
-
-  } else {
-
-    cerr << "Can not open " << argv[1] << endl;
-
-    delete file;
-    exit(EXIT_FAILURE);
-
+  {
+    ofstream dot("graph.dot");
+    tracker->print_graph_dot(&dot);
+    cout << "Wrote graph.dot." << endl;
   }
 
-  delete file;
+  delete tracker;
+
   exit(EXIT_SUCCESS);
 }