X-Git-Url: https://fleuret.org/cgi-bin/gitweb/gitweb.cgi?a=blobdiff_plain;f=mtp.cc;fp=mtp.cc;h=2f9e7a98f593227e1d4d84be31d012a2865f235a;hb=8f7e0196dd3c89cb4e68732d6812a13d43bdfbc7;hp=0000000000000000000000000000000000000000;hpb=9665f6b8d842f02facda1590200742482d4362fa;p=mtp.git diff --git a/mtp.cc b/mtp.cc new file mode 100644 index 0000000..2f9e7a9 --- /dev/null +++ b/mtp.cc @@ -0,0 +1,61 @@ + +/////////////////////////////////////////////////////////////////////////// +// This program is free software: you can redistribute it and/or modify // +// it under the terms of the version 3 of the GNU General Public License // +// as published by the Free Software Foundation. // +// // +// This program is distributed in the hope that it will be useful, but // +// WITHOUT ANY WARRANTY; without even the implied warranty of // +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU // +// General Public License for more details. // +// // +// You should have received a copy of the GNU General Public License // +// along with this program. If not, see . // +// // +// Written by and Copyright (C) Francois Fleuret // +// Contact for comments & bug reports // +/////////////////////////////////////////////////////////////////////////// + +// Multi-Tracked Path + +#include +#include + +using namespace std; + +#include "tracker.h" + +int main(int argc, char **argv) { + + if(argc < 2) { + cerr << argv[0] << " " << endl; + exit(EXIT_FAILURE); + } + + Tracker tracker; + + ifstream in_tracker(argv[1]); + + if(in_tracker.good()) { + + tracker.read(&in_tracker); + tracker.build_graph(); + tracker.track(); + + ofstream out_traj("result.trj"); + tracker.write_trajectories(&out_traj); + cout << "Wrote result.trj" << endl; + + ofstream out_dot("graph.dot"); + tracker.print_graph_dot(&out_dot); + cout << "Wrote graph.dot" << endl; + + } else { + + cerr << "Can not open " << argv[1] << endl; + exit(EXIT_FAILURE); + + } + + exit(EXIT_SUCCESS); +}