Skip to content

Commit be0cf01

Browse files
committed
add vs2010 project
1 parent aa61aa9 commit be0cf01

File tree

141 files changed

+162580
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

141 files changed

+162580
-0
lines changed

LICENSE

Lines changed: 674 additions & 0 deletions
Large diffs are not rendered by default.

README

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
This will be a C++ implementations of the OpenTLD (aka Predator)
2+
----------------------------------------------------------------------------
3+
This is a work in progress, as of right now the code is functional but pretty slow.
4+
----------------------------------------------------------------------------
5+
Installation Notes
6+
=====================================
7+
git clone [email protected]:alantrrs/OpenTLD.git
8+
cd OpenTLD
9+
mkdir build
10+
cd build
11+
cmake ../src/
12+
make
13+
cd ../bin/
14+
%To run from camera
15+
./run_tld -p ../parameters.yml -tl
16+
%To run from file
17+
./run_tld -p ../parameters.yml -s ../datasets/06_car/car.mpg -tl
18+
%To init bounding box from file
19+
./run_tld -p ../parameters.yml -s ../datasets/06_car/car.mpg -b ../datasets/06_car/init.txt -tl
20+
%To train only in the firs frame (no tracking, no learning)
21+
./run_tld -p ../parameters.yml -s ../datasets/06_car/car.mpg -b ../datasets/06_car/init.txt
22+
%To test the final detector (Repeat the video, first time learns, second time detects)
23+
./run_tld -p ../parameters.yml -s ../datasets/06_car/car.mpg -b ../datasets/06_car/init.txt -tl -r
24+
25+
=====================================
26+
Evaluation
27+
=====================================
28+
The output of the program is a file called bounding_boxes.txt which contains all the detections made through the video. This file should be compared with the ground truth file to evaluate the performance of the algorithm. This is done using a python script:
29+
python ../datasets/evaluate_vis.py ../datasets/06_car/car.mpg bounding_boxes.txt ../datasets/06_car/gt.txt
30+
31+
====================================
32+
Thanks
33+
====================================
34+
To Zdenek Kalal for realeasing his awesome algorithm
35+

datasets/01_david/david.mpg

940 KB
Binary file not shown.

0 commit comments

Comments
 (0)