X-Git-Url: https://fleuret.org/cgi-bin/gitweb/gitweb.cgi?p=mtp.git;a=blobdiff_plain;f=mtp_example.cc;h=14132c145ddd1e57f4bd921e3a71ff43b43065db;hp=9e8db82b0ac1040267f2e60c1886c3e50b6e8654;hb=HEAD;hpb=e777319f3c213198e574dd3cac2de1aeac6bfbbf diff --git a/mtp_example.cc b/mtp_example.cc index 9e8db82..14132c1 100644 --- a/mtp_example.cc +++ b/mtp_example.cc @@ -25,6 +25,7 @@ #include #include #include +#include using namespace std; @@ -41,13 +42,11 @@ scalar_t noisy_score(scalar_t true_score, scalar_t erroneous_score, } } -int main(int argc, char **argv) { +void create_light_test(MTPTracker *tracker) { int nb_locations = 7; int nb_time_steps = 8; int motion_amplitude = 1; - MTPTracker *tracker = new MTPTracker(); - tracker->allocate(nb_time_steps, nb_locations); // We define the spatial structure by stating what are the possible @@ -127,8 +126,58 @@ int main(int argc, char **argv) { tracker->detection_scores[t][la] = sa; tracker->detection_scores[t][lb] = sb; } +} + +void create_heavy_test(MTPTracker *tracker) { + int nb_locations = 100; + int nb_time_steps = 1000; + + tracker->allocate(nb_time_steps, nb_locations); + + for(int l = 0; l < nb_locations; l++) { + for(int m = 0; m < nb_locations; m++) { + tracker->allowed_motions[l][m] = (drand48() < 0.1); + } + } + + for(int t = 0; t < nb_time_steps; t++) { + for(int l = 0; l < nb_locations; l++) { + tracker->entrances[t][l] = drand48() < 0.01; + tracker->exits[t][l] = drand48() < 0.01; + } + } + + tracker->build_graph(); + + for(int t = 0; t < nb_time_steps; t++) { + for(int l = 0; l < nb_locations; l++) { + tracker->detection_scores[t][l] = scalar_t(drand48()) - 0.95f; + } + } +} + +int main(int argc, char **argv) { + int stress_test; + + if(argc == 1) { + stress_test = 0; + } else if(argc == 2 && strcmp(argv[1], "stress") == 0) { + stress_test = 1; + } else { + cerr << "mtp_examples [stress]" << endl; + exit(EXIT_FAILURE); + } + + MTPTracker *tracker = new MTPTracker(); + + if(stress_test) { + create_heavy_test(tracker); + } else { + create_light_test(tracker); + } - { // Write down the tracker setting, so that we can use it as an + { + // 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);