X-Git-Url: https://fleuret.org/cgi-bin/gitweb/gitweb.cgi?a=blobdiff_plain;f=mtp_example.cc;h=0db60542c49737432530a1518710f40fed1a4227;hb=34022d5e987cf13ff6db31a6d7263e9266a8b1c0;hp=0627b818004750e28521a86a8a1b5e72044c98ed;hpb=1099e1c9f0798c7b648948fa23715b17988e10a0;p=mtp.git diff --git a/mtp_example.cc b/mtp_example.cc index 0627b81..0db6054 100644 --- a/mtp_example.cc +++ b/mtp_example.cc @@ -22,8 +22,6 @@ * */ -// Multi-Tracked Path - #include #include @@ -82,7 +80,7 @@ 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); } } @@ -114,8 +112,8 @@ 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