Cosmetics.
[mtp.git] / mtp.cc
1
2 ///////////////////////////////////////////////////////////////////////////
3 // This program is free software: you can redistribute it and/or modify  //
4 // it under the terms of the version 3 of the GNU General Public License //
5 // as published by the Free Software Foundation.                         //
6 //                                                                       //
7 // This program is distributed in the hope that it will be useful, but   //
8 // WITHOUT ANY WARRANTY; without even the implied warranty of            //
9 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU      //
10 // General Public License for more details.                              //
11 //                                                                       //
12 // You should have received a copy of the GNU General Public License     //
13 // along with this program. If not, see <http://www.gnu.org/licenses/>.  //
14 //                                                                       //
15 // Written by and Copyright (C) Francois Fleuret                         //
16 // Contact <francois.fleuret@idiap.ch> for comments & bug reports        //
17 ///////////////////////////////////////////////////////////////////////////
18
19 // Multi-Tracked Path
20
21 // Takes the graph description file as input and produces a dot file.
22
23 // EXAMPLE: ./mtp ./graph2.txt  | dot -T pdf -o- | xpdf -
24
25 #include <iostream>
26 #include <fstream>
27 #include <cmath>
28 #include <stdio.h>
29 #include <stdlib.h>
30 #include <float.h>
31
32 using namespace std;
33
34 #include "mtp_graph.h"
35 #include "tracker.h"
36
37 //////////////////////////////////////////////////////////////////////
38
39 void find_best_paths(int nb_vertices,
40                      int nb_edges, int *ea, int *eb, scalar_t *el,
41                      int source, int sink,
42                      int *result_edge_occupation) {
43   MTPGraph graph(nb_vertices, nb_edges, ea, eb, source, sink);
44   graph.find_best_paths(el, result_edge_occupation);
45   graph.print_dot();
46 }
47
48 //////////////////////////////////////////////////////////////////////
49
50 int main(int argc, char **argv) {
51   // int nb_locations = 6;
52   // int nb_time_steps = 5;
53
54   // {
55     // Tracker tracker(nb_time_steps, nb_locations);
56
57     // for(int l = 0; l < nb_locations; l++) {
58       // for(int k = 0; k < nb_locations; k++) {
59         // tracker.set_allowed_motion(l, k, abs(l - k) <= 1);
60       // }
61     // }
62
63     // for(int t = 0; t < nb_time_steps; t++) {
64       // for(int l = 0; l < nb_locations; l++) {
65         // tracker.set_detection_score(t, l,
66                                     // (drand48() < 0.9 ? -1.0 : 1.0) + drand48() * 0.1 - 0.05);
67       // }
68       // tracker.set_detection_score(t, 0,
69                                   // (drand48() < 0.9 ? 1.0 : -1.0) + drand48() * 0.1 - 0.05);
70     // }
71
72     // tracker.build_graph();
73     // tracker.track();
74   // }
75
76   // exit(0);
77
78   if(argc < 2) {
79     cerr << argv[0] << " <graph file>" << endl;
80     exit(EXIT_FAILURE);
81   }
82
83   ifstream *file = new ifstream(argv[1]);
84
85   int nb_edges, nb_vertices;
86   int source, sink;
87
88   if(file->good()) {
89
90     (*file) >> nb_vertices >> nb_edges;
91     (*file) >> source >> sink;
92
93     scalar_t *edge_lengths = new scalar_t[nb_edges];
94     int *vertex_from = new int[nb_edges];
95     int *vertex_to = new int[nb_edges];
96     int *result_edge_occupation = new int[nb_edges];
97
98     for(int e = 0; e < nb_edges; e++) {
99       (*file) >> vertex_from[e] >> vertex_to[e] >> edge_lengths[e];
100     }
101
102     find_best_paths(nb_vertices, nb_edges,
103                     vertex_from, vertex_to, edge_lengths,
104                     source, sink,
105                     result_edge_occupation);
106
107     // dot_print(nb_vertices, nb_edges,
108               // vertex_from, vertex_to, edge_lengths,
109               // source, sink,
110               // result_edge_occupation);
111
112     delete[] result_edge_occupation;
113     delete[] edge_lengths;
114     delete[] vertex_from;
115     delete[] vertex_to;
116
117   } else {
118
119     cerr << "Can not open " << argv[1] << endl;
120
121     delete file;
122     exit(EXIT_FAILURE);
123
124   }
125
126   delete file;
127   exit(EXIT_SUCCESS);
128 }