X-Git-Url: https://www.fleuret.org/cgi-bin/gitweb/gitweb.cgi?a=blobdiff_plain;f=tracker.h;fp=tracker.h;h=4143cf590c70ac0a25235f4de85e0b9a649a242b;hb=455e5736828233445ac8aea8f15b3bde7e16e9bf;hp=d37e46adfebfa2b9f5880fe3a05549e2b4ea89eb;hpb=0f54e5005de0f05d4bc400f23181301eb40f469e;p=mtp.git diff --git a/tracker.h b/tracker.h index d37e46a..4143cf5 100644 --- a/tracker.h +++ b/tracker.h @@ -29,19 +29,18 @@ class Tracker { int **_allowed_motion; public: - Tracker(int nb_locations, int nb_time_steps); + Tracker(int nb_time_steps, int nb_locations); ~Tracker(); void set_allowed_motion(int from_location, int to_location); - void set_detection_score(int location, int time, scalar_t score); - void make_graph(); + void set_detection_score(int time, int location, scalar_t score); void track(); - int nb_trajectories(); - int trajectory_start_time(int k); - int trajectory_end_time(int k); - int trajectory_location(int k, int time); + // int nb_trajectories(); + // int trajectory_start_time(int k); + // int trajectory_end_time(int k); + // int trajectory_location(int k, int time); }; #endif