Skip to content

Commit 3abd78a

Browse files
authored
Update README.md
1 parent f9b43ee commit 3abd78a

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

README.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ The core of this library are two probabilistic tracker
66
[M. Wuthrich, P. Pastor, M. Kalakrishnan, J. Bohg, and S. Schaal. Probabilistic Object Tracking using a Range Camera IEEE Intl Conf on Intelligent Robots and Systems, 2013]
77

88
http://arxiv.org/abs/1505.00241
9+
10+
This tracker can run on a pure CPU system or optionally run on GPU using CUDA 6.5 or later
911

1012
* A Parametric Tracker Based on Robust Multi-Sensor Gaussian Filter Tracker
1113

@@ -14,3 +16,27 @@ The core of this library are two probabilistic tracker
1416
IEEE Intl Conf on Robotics and Automation, 2016]
1517

1618
http://arxiv.org/abs/1602.06157
19+
20+
# Requirements
21+
* Ubuntu 12.04
22+
* C++0x or C++11 Compiler (gcc-4.6 or later)
23+
* [CUDA](https://developer.nvidia.com/cuda-downloads) 6.5 or later (optional)
24+
25+
# Compiling
26+
The cmake package uses [Catkin](https://github.com/ros/catkin). If you have installed ROS groovy or later, then you most likely have catkin installed already.
27+
28+
$ cd $HOME
29+
$ mkdir -p projects/tracking/src
30+
$ cd projects/tracking/src
31+
$ git clone git@github.com:bayesian-object-tracking/dbot.git
32+
$ cd ..
33+
$ catkin_make -DCMAKE_BUILD_TYPE=Release -DDBOT_BUILD_GPU=On
34+
35+
If no CUDA enabled device is available, you can deactivate the GPU implementation via
36+
37+
$ catkin_make -DCMAKE_BUILD_TYPE=Release -DDBOT_BUILD_GPU=Off
38+
39+
40+
41+
42+

0 commit comments

Comments
 (0)