forked from wg-perception/PartsBasedDetector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
README
46 lines (35 loc) · 1.5 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
-------------------------------------------------
PartsBasedDetector
-------------------------------------------------
This project implements a Parts Based Detector in C++, described in the
following paper:
Yi Yang, Deva Ramanan, "Articulated Pose Estimation with
Flexible Mixtures-of-Parts," CVPR 2011
The project has the following dependencies:
OpenCV REQUIRED (for image processing)
CMake REQUIRED (for building)
Doxygen OPTIONAL (for documentation)
OpenMP OPTIONAL (for multithreading)
ROS OPTIONAL (for publishing detections on a ROS topic)
ECTO OPTIONAL (for building and ECTO cell)
BUILDING
The project can be built in one of two modes:
A standalone binary (for testing functionality)
A shared library (for use in existing applications)
To configure the project, set the options at the top of CMakeLists.txt
To build the project, follow the normal cmake routine from the root folder:
>> mkdir build
>> cd build
>> cmake ..
>> make
DETECTING
To run the detector, please consult the Mainpage of the docs, or
src/demo.cpp. Both contain examples of how the detector can be
initialised and run
LEARNING
The learning code is currently only in Octave/Matlab. This is because
the detector supports a number of learning schema, and porting all of
these to C++ is not practical at this time.
Please consult the README within the matlab/ directory for instructions
on training a model
This package is developed and maintained by Hilton Bristow, Willow Garage