X-Git-Url: https://fleuret.org/cgi-bin/gitweb/gitweb.cgi?a=blobdiff_plain;f=mtp_example.cc;h=92d406285edd10bc151ba8eea832feda102a6a37;hb=c7d5cdf1982dacc5451f79599041b2e95524d3f7;hp=91e4d6b24b4f607290375ad96f637e4d9a9b1cbb;hpb=ecf9426e0c2db90a095efd32aade09b135e9ec20;p=mtp.git diff --git a/mtp_example.cc b/mtp_example.cc index 91e4d6b..92d4062 100644 --- a/mtp_example.cc +++ b/mtp_example.cc @@ -49,9 +49,8 @@ int main(int argc, char **argv) { 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 @@ -65,6 +64,9 @@ int main(int argc, char **argv) { tracker->exits[nb_locations - 1] = 1; } + tracker->force_empty_first_frame = 0; + tracker->force_empty_last_frame = 0; + // We construct the graph corresponding to this structure tracker->build_graph(); @@ -122,7 +124,7 @@ int main(int argc, char **argv) { tracker->write(&out_tracker); } - // Does the tracking per se + // Performs the tracking per se tracker->track();