X-Git-Url: https://fleuret.org/cgi-bin/gitweb/gitweb.cgi?a=blobdiff_plain;f=mtp_tracker.h;h=01c831b60be0b73ba8ba2d2f228c62fe4a871747;hb=5be711e6c321a85578d560891c915cf610e6e876;hp=08de498fecbf56fca08dc8cc09e9f3a48e14ff85;hpb=f248d9481cd0338053cb38a18eb3898042c126d3;p=mtp.git diff --git a/mtp_tracker.h b/mtp_tracker.h index 08de498..01c831b 100644 --- a/mtp_tracker.h +++ b/mtp_tracker.h @@ -33,7 +33,6 @@ using namespace std; #include "mtp_graph.h" class MTPTracker { - int _nb_locations, _nb_time_steps; scalar_t **_detection_score; int **_allowed_motion; int *_entrances, *_exits; @@ -47,10 +46,11 @@ class MTPTracker { public: // The spatial structure + int nb_locations, nb_time_steps; int **allowed_motion; - int *entrances, *exits; + int **entrances, **exits; - // The detection scores at each node + // The detection scores at each location and time scalar_t **detection_scores; MTPTracker();