3 * mtp is the ``Multi Tracked Paths'', an implementation of the
4 * k-shortest paths algorithm for multi-target tracking.
6 * Copyright (c) 2012 Idiap Research Institute, http://www.idiap.ch/
7 * Written by Francois Fleuret <francois.fleuret@idiap.ch>
9 * This file is part of mtp.
11 * mtp is free software: you can redistribute it and/or modify it
12 * under the terms of the GNU General Public License version 3 as
13 * published by the Free Software Foundation.
15 * mtp is distributed in the hope that it will be useful, but WITHOUT
16 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
17 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
18 * License for more details.
20 * You should have received a copy of the GNU General Public License
21 * along with selector. If not, see <http://www.gnu.org/licenses/>.
25 #include "mtp_tracker.h"
31 void MTPTracker::free() {
32 delete[] _edge_lengths;
34 deallocate_array<scalar_t>(detection_scores);
35 deallocate_array<int>(allowed_motions);
36 deallocate_array<int>(exits);
37 deallocate_array<int>(entrances);
40 void MTPTracker::allocate(int t, int l) {
46 detection_scores = allocate_array<scalar_t>(nb_time_steps, nb_locations);
47 allowed_motions = allocate_array<int>(nb_locations, nb_locations);
49 entrances = allocate_array<int>(nb_time_steps, nb_locations);
50 exits = allocate_array<int>(nb_time_steps, nb_locations);
52 for(int l = 0; l < nb_locations; l++) {
53 for(int m = 0; m < nb_locations; m++) {
54 allowed_motions[l][m] = 0;
58 for(int t = 0; t < nb_time_steps; t++) {
59 for(int l = 0; l < nb_locations; l++) {
60 detection_scores[t][l] = 0.0;
70 void MTPTracker::write(ostream *os) {
71 (*os) << nb_locations << " " << nb_time_steps << endl;
75 for(int l = 0; l < nb_locations; l++) {
76 for(int m = 0; m < nb_locations; m++) {
77 (*os) << allowed_motions[l][m];
78 if(m < nb_locations - 1) (*os) << " "; else (*os) << endl;
84 for(int t = 0; t < nb_time_steps; t++) {
85 for(int l = 0; l < nb_locations; l++) {
86 (*os) << entrances[t][l];
87 if(l < nb_locations - 1) (*os) << " "; else (*os) << endl;
93 for(int t = 0; t < nb_time_steps; t++) {
94 for(int l = 0; l < nb_locations; l++) {
96 if(l < nb_locations - 1) (*os) << " "; else (*os) << endl;
102 for(int t = 0; t < nb_time_steps; t++) {
103 for(int l = 0; l < nb_locations; l++) {
104 (*os) << detection_scores[t][l];
105 if(l < nb_locations - 1) (*os) << " "; else (*os) << endl;
110 void MTPTracker::read(istream *is) {
117 for(int l = 0; l < nb_locations; l++) {
118 for(int m = 0; m < nb_locations; m++) {
119 (*is) >> allowed_motions[l][m];
123 for(int t = 0; t < nb_time_steps; t++) {
124 for(int l = 0; l < nb_locations; l++) {
125 (*is) >> entrances[t][l];
129 for(int t = 0; t < nb_time_steps; t++) {
130 for(int l = 0; l < nb_locations; l++) {
131 (*is) >> exits[t][l];
135 for(int t = 0; t < nb_time_steps; t++) {
136 for(int l = 0; l < nb_locations; l++) {
137 (*is) >> detection_scores[t][l];
142 void MTPTracker::write_trajectories(ostream *os) {
143 (*os) << nb_trajectories() << endl;
144 for(int t = 0; t < nb_trajectories(); t++) {
146 << " " << trajectory_entrance_time(t)
147 << " " << trajectory_duration(t)
148 << " " << trajectory_score(t);
149 for(int u = 0; u < trajectory_duration(t); u++) {
150 (*os) << " " << trajectory_location(t, u);
156 MTPTracker::MTPTracker() {
160 detection_scores = 0;
170 MTPTracker::~MTPTracker() {
171 delete[] _edge_lengths;
173 deallocate_array<scalar_t>(detection_scores);
174 deallocate_array<int>(allowed_motions);
175 deallocate_array<int>(entrances);
176 deallocate_array<int>(exits);
179 int MTPTracker::early_pair_node(int t, int l) {
180 return 1 + (2 * t + 0) * nb_locations + l;
183 int MTPTracker::late_pair_node(int t, int l) {
184 return 1 + (2 * t + 1) * nb_locations + l;
187 void MTPTracker::build_graph() {
188 // Delete the existing graph if there was one
189 delete[] _edge_lengths;
192 int nb_motions = 0, nb_exits = 0, nb_entrances = 0;
194 for(int l = 0; l < nb_locations; l++) {
195 for(int t = 0; t < nb_time_steps; t++) {
196 if(exits[t][l]) nb_exits++;
197 if(entrances[t][l]) nb_entrances++;
199 for(int m = 0; m < nb_locations; m++) {
200 if(allowed_motions[l][m]) nb_motions++;
204 int nb_vertices = 2 + 2 * nb_time_steps * nb_locations;
207 // The edges from the source to the entrances and from the exits
209 nb_exits + nb_entrances +
210 // The edges for the motions, between every successive frames
211 (nb_time_steps - 1) * nb_motions +
212 // The edges inside the duplicated nodes
213 nb_locations * nb_time_steps;
215 int *node_from = new int[nb_edges];
216 int *node_to = new int[nb_edges];
218 int source = 0, sink = nb_vertices - 1;
221 _edge_lengths = new scalar_t[nb_edges];
223 // We put the in-node edges first, since these are the ones whose
224 // lengths we will have to change before tracking, according to the
227 for(int t = 0; t < nb_time_steps; t++) {
228 for(int l = 0; l < nb_locations; l++) {
229 node_from[e] = early_pair_node(t, l);
230 node_to[e] = late_pair_node(t, l);
235 // The edges between frames, corresponding to allowed motions
237 for(int t = 0; t < nb_time_steps - 1; t++) {
238 for(int l = 0; l < nb_locations; l++) {
239 for(int k = 0; k < nb_locations; k++) {
240 if(allowed_motions[l][k]) {
241 node_from[e] = late_pair_node(t, l);
242 node_to[e] = early_pair_node(t+1, k);
243 _edge_lengths[e] = 0.0;
250 // The edges from the source to the entrances, and from the exits to
253 for(int t = 0; t < nb_time_steps; t++) {
254 for(int l = 0; l < nb_locations; l++) {
255 if(entrances[t][l]) {
256 node_from[e] = source;
257 node_to[e] = early_pair_node(t, l);
258 _edge_lengths[e] = 0.0;
262 node_from[e] = late_pair_node(t, l);
264 _edge_lengths[e] = 0.0;
270 // We are done, build the graph
272 _graph = new MTPGraph(nb_vertices, nb_edges,
280 void MTPTracker::print_graph_dot(ostream *os) {
282 for(int t = 0; t < nb_time_steps; t++) {
283 for(int l = 0; l < nb_locations; l++) {
284 _edge_lengths[e++] = - detection_scores[t][l];
287 _graph->print_dot(os);
290 void MTPTracker::track() {
294 for(int t = 0; t < nb_time_steps; t++) {
295 for(int l = 0; l < nb_locations; l++) {
296 _edge_lengths[e++] = - detection_scores[t][l];
300 _graph->find_best_paths(_edge_lengths);
301 _graph->retrieve_disjoint_paths();
304 for(int p = 0; p < _graph->nb_paths; p++) {
305 Path *path = _graph->paths[p];
306 cout << "PATH " << p << " [length " << path->nb_nodes << "] " << path->nodes[0];
307 for(int n = 1; n < path->nb_nodes; n++) {
308 cout << " -> " << path->nodes[n];
315 int MTPTracker::nb_trajectories() {
316 return _graph->nb_paths;
319 scalar_t MTPTracker::trajectory_score(int k) {
320 return -_graph->paths[k]->length;
323 int MTPTracker::trajectory_entrance_time(int k) {
324 return (_graph->paths[k]->nodes[1] - 1) / (2 * nb_locations);
327 int MTPTracker::trajectory_duration(int k) {
328 return (_graph->paths[k]->nb_nodes - 2) / 2;
331 int MTPTracker::trajectory_location(int k, int time_from_entry) {
332 return (_graph->paths[k]->nodes[2 * time_from_entry + 1] - 1) % nb_locations;