From: Francois Fleuret Date: Fri, 24 Aug 2012 03:18:11 +0000 (+0200) Subject: Cosmetics. X-Git-Url: https://www.fleuret.org/cgi-bin/gitweb/gitweb.cgi?p=mtp.git;a=commitdiff_plain;h=9bbc3775491edae5bb92679ecca0f525877371f5 Cosmetics. --- diff --git a/tracker.cc b/tracker.cc index eafce84..c66c89d 100644 --- a/tracker.cc +++ b/tracker.cc @@ -60,7 +60,7 @@ Tracker::~Tracker() { } void Tracker::build_graph() { - // Delete existing graph if there was one + // Delete the existing graph if there was one delete[] _edge_lengths; delete _graph; @@ -81,11 +81,10 @@ void Tracker::build_graph() { // frame to the sink _nb_locations * 2 + // The edges from the source to the entrances and from the exists - // to the sink (in every time frames but the first for the source, - // and last for the exits) + // to the sink (in every time frames but the first for the + // entrances, and last for the exits) (_nb_time_steps - 1) * (nb_exits + nb_entrances) + - // The edges for the motions, between every pair of successive - // frames + // The edges for the motions, between every successive frames (_nb_time_steps - 1) * nb_motions + // The edges inside the duplicated nodes _nb_locations * _nb_time_steps; diff --git a/tracker.h b/tracker.h index 1c851e0..fc3e529 100644 --- a/tracker.h +++ b/tracker.h @@ -34,7 +34,9 @@ class Tracker { MTPGraph *_graph; scalar_t *_edge_lengths; + public: + scalar_t **detection_score; int **allowed_motion; int *entrances, *exits;