X-Git-Url: https://www.fleuret.org/cgi-bin/gitweb/gitweb.cgi?p=mtp.git;a=blobdiff_plain;f=mtp.cc;h=c6d31b3f9cebdd2c7fa726e0a69dd21d30f909d0;hp=60e15db7f6724646a391fc0d9bc531e2395cba02;hb=20f94c6bff1541da8d0639966787dc8aaafea025;hpb=68d9c4f175f774d851a32f6069ad04b31924bfac diff --git a/mtp.cc b/mtp.cc index 60e15db..c6d31b3 100644 --- a/mtp.cc +++ b/mtp.cc @@ -1,7 +1,7 @@ /* - * mtp is the ``Multi Tracked Path'', an implementation of the - * k-shortest path algorithm for multi-target tracking. + * mtp is the ``Multi Tracked Paths'', an implementation of the + * k-shortest paths algorithm for multi-target tracking. * * Copyright (c) 2012 Idiap Research Institute, http://www.idiap.ch/ * Written by Francois Fleuret @@ -22,14 +22,12 @@ * */ -// Multi-Tracked Path - #include #include using namespace std; -#include "tracker.h" +#include "mtp_tracker.h" int main(int argc, char **argv) { @@ -42,7 +40,7 @@ int main(int argc, char **argv) { if(in_tracker->good()) { - Tracker *tracker = new Tracker(); + MTPTracker *tracker = new MTPTracker(); tracker->read(in_tracker); cout << "Read " << argv[1] << endl;