Comment update.
[mtp.git] / mtp.cc
diff --git a/mtp.cc b/mtp.cc
index 60e15db..c6d31b3 100644 (file)
--- 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 <francois.fleuret@idiap.ch>
  *
  */
 
-// Multi-Tracked Path
-
 #include <iostream>
 #include <fstream>
 
 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;