X-Git-Url: https://fleuret.org/cgi-bin/gitweb/gitweb.cgi?a=blobdiff_plain;f=mtp_example.cc;h=fffeacb4ee5ee7d7bcf0791af1d8df4ec6d89f41;hb=0b897c5e246862e9c9d46b319bcfe73fcd819460;hp=0627b818004750e28521a86a8a1b5e72044c98ed;hpb=1099e1c9f0798c7b648948fa23715b17988e10a0;p=mtp.git diff --git a/mtp_example.cc b/mtp_example.cc index 0627b81..fffeacb 100644 --- a/mtp_example.cc +++ b/mtp_example.cc @@ -22,14 +22,12 @@ * */ -// Multi-Tracked Path - #include #include using namespace std; -#include "tracker.h" +#include "mtp_tracker.h" ////////////////////////////////////////////////////////////////////// @@ -47,13 +45,12 @@ 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); - // We define the spatial structures by stating what are the possible - // motions of targets, and what are the entrances and the - // exits. + // We define the spatial structure by stating what are the possible + // motions of targets, and what are the entrances and the exits. // Here our example is a 1D space with motions from any location to // any location less than motion_amplitude away, entrance at @@ -82,18 +79,18 @@ int main(int argc, char **argv) { for(int t = 0; t < nb_time_steps; t++) { for(int l = 0; l < nb_locations; l++) { - tracker->noisy_scores[t][l] = noisy_score(-1.0, 1.0, score_noise, flip_noise); + tracker->detection_scores[t][l] = noisy_score(-1.0, 1.0, score_noise, flip_noise); } } - // 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 @@ -114,16 +111,17 @@ int main(int argc, char **argv) { if(la > nb_locations/2 - 1) la = nb_locations/2 - 1; if(lb < nb_locations/2 + 1) lb = nb_locations/2 + 1; - tracker->noisy_scores[t][la] = sa; - tracker->noisy_scores[t][lb] = sb; + tracker->detection_scores[t][la] = sa; + 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); } - // Does the tracking per se + // Performs the tracking per se tracker->track();