X-Git-Url: https://fleuret.org/cgi-bin/gitweb/gitweb.cgi?a=blobdiff_plain;f=mtp_example.cc;h=91e4d6b24b4f607290375ad96f637e4d9a9b1cbb;hb=ecf9426e0c2db90a095efd32aade09b135e9ec20;hp=0db60542c49737432530a1518710f40fed1a4227;hpb=50f548312764a481b3ee3b9153b0b738e2ecca17;p=mtp.git diff --git a/mtp_example.cc b/mtp_example.cc index 0db6054..91e4d6b 100644 --- a/mtp_example.cc +++ b/mtp_example.cc @@ -27,7 +27,7 @@ using namespace std; -#include "tracker.h" +#include "mtp_tracker.h" ////////////////////////////////////////////////////////////////////// @@ -45,7 +45,7 @@ int main(int argc, char **argv) { int nb_time_steps = 8; int motion_amplitude = 1; - Tracker *tracker = new Tracker(); + MTPTracker *tracker = new MTPTracker(); tracker->allocate(nb_time_steps, nb_locations); @@ -84,14 +84,14 @@ int main(int argc, char **argv) { } } - // Then we two targets with the typical local minimum: + // Then we add two targets with a typical tracking local minimum // // * Target A moves from location 0 to the middle, stays there for a - // while, and comes back, and is strongly detected on the first + // while, and comes back. It is strongly detected on the first // half // // * Target B moves from location nb_locations-1 to the middle, stay - // there for a while, and comes back, and is strongly detected on + // there for a while, and comes back. It is strongly detected on // the second half int la, lb; // Target locations @@ -116,7 +116,8 @@ int main(int argc, char **argv) { tracker->detection_scores[t][lb] = sb; } - { // Write down the tracker setting + { // Write down the tracker setting, so that we can use it as an + // example for the mtp command line ofstream out_tracker("tracker.dat"); tracker->write(&out_tracker); }