Giter Club home page Giter Club logo

pose-estimation-library's Introduction

POSE ESTIMATION LIBRARY

Library for pose estimation of known objects, code api and user manual are available here.

Set Up

You can build pel inside a catkin workspace with catkin tools so that it is available to other catkin packages, or you can build and install it system wide with pure CMake. Either path you choose you will need the following dependencies.

Base Dependencies

  • pcl >= 1.7.2
  • Boost libraries
  • hdf5 (libhdf5-dev on Ubuntu)
  • GCC > 4.7 (or equivalent compiler that supports -std=c++11)
  • CMake >= 2.8.3

Install pel inside a catkin workspace

Navigate to your catkin source space (for most people it is just ~/catkin_ws/src/) then clone the project:

cd ~/catkin_ws/src/
git clone [email protected]:Tabjones/Pose-Estimation-Library.git

Then build the workspace with catkin build

cd ..
catkin build

Done.

Install pel system wide

Clone the project wherever you want:

git clone [email protected]:Tabjones/Pose-Estimation-Library.git pel
cd pel

Make a build directory, for out-of-source build:

mkdir build
cd build

Configure CMake with defaults:

cmake ..

Or check and change variables:

ccmake ..

Then build and install

make
sudo make install

Done.

Build your own program and link it against pel

To link a project against pel, its CMakeLists.txt must contain the following lines:

find_package (pel)
include_directories(${pel_INCLUDE_DIRS})
link_directoriers(${pel_LIBRARY_DIRS})
target_link_libraries (>your_program< ${pel_LIBRARIES} )

Example programs are available into ExampleApps folder and are built and installed by default.

Mirrors

This project is mirrored on:

pose-estimation-library's People

Contributors

tabjones avatar

Watchers

James Cloos avatar LianaBertoni avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.