X-Git-Url: https://fleuret.org/cgi-bin/gitweb/gitweb.cgi?a=blobdiff_plain;f=README.txt;h=36ced12d4e69edfdb4e4cf669c558bd27550f765;hb=bfbef5a16cf4282429c9f913b6122ffc550790bd;hp=2ce7e3149d7a3e06b074258ef1b9b5e71f66f120;hpb=c7d5cdf1982dacc5451f79599041b2e95524d3f7;p=mtp.git diff --git a/README.txt b/README.txt index 2ce7e31..36ced12 100644 --- a/README.txt +++ b/README.txt @@ -13,9 +13,8 @@ in Pattern Analysis and Machine Intelligence (TPAMI), 33(9):1806-1819, 2011. -It works with negative edge lengths and stops computing new path when -it can not find one of negative total length, instead of fixing the -total number of paths to a constant K. +This implementation is not the reference implementation used for the +experiments presented in this article. * INSTALLATION @@ -64,9 +63,9 @@ The MTPTracker class allows - the allowed motions between them (a Boolean flag for each pair of locations from/to) - - the entrances (a Boolean flag for each location) + - the entrances (a Boolean flag for each location and time step) - - the exits (a Boolean flag for each location) + - the exits (a Boolean flag for each location and time step) (2) to define a number of time steps @@ -106,11 +105,13 @@ bool:allowed_motion_from_1_to_1 ... bool:allowed_motion_from_1_to_L ... bool:allowed_motion_from_L_to_1 ... bool:allowed_motion_from_L_to_L -bool:force_empty_first_frame bool:force_empty_last_frame - -bool:is_an_entrance_1 ... bool:is_an_entrance_L +bool:entrance_1_1 ... bool:entrance_1_L +... +bool:entrance_T_1 ... bool:entrance_T_L -bool:is_an_exit_1 ... bool:is_an_exit_L +bool:exit_1_1 ... bool:exit_1_L +... +bool:exit_T_1 ... bool:exit_T_L float:detection_score_1_1 ... float:detection_score_1_L ...