Giter VIP home page Giter VIP logo

local_planner's Introduction

Local Planner Using OMPL

This repository consists of my attempts in learning ompl libraries for robot planning (based on ompl tuturials).

Dependencies

  • Boost (version 1.54 or higher)
  • CMake (version 2.8.7 or higher)
  • Eigen (version 3.3 or higher)
  • Assimp (version 3.0.1270 or higher)
  • FCL (version 0.3.1 or higher)
  • OMPL (version 1.3.3 or higher)

Installing Dependencies:

To install Boost, run the following command:

sudo apt-get update
sudo apt-get install libboost-all-dev

To install Cmake, run the following command:

sudo apt-get update
sudo apt-get install build-essential
sudo apt-get install cmake

To install Eigen, run the following command:

sudo apt install libeigen3-dev

To install Assimp, run the following command:

sudo apt-get install assimp-utils

To install FCL, run the following command:

sudo apt-get install libccd-dev # FCL Dependency
git clone https://github.com/flexible-collision-library/fcl
cd fcl
mkdir build
cd build
cmake ..
make -jN # N is the maximum number of parallel compile jobs
sudo make install

To install OMPL libraries, run the following command:

git clone https://github.com/ompl/omplapp.git
cd omplapp
git clone https://github.com/ompl/ompl.git
mkdir -p build/Release
cd build/Release
cmake ../..
make -jN # N is the maximum number of parallel compile jobs
sudo make install

How to run

After running rosnode ompl_planner_node, publish start and goal states in SE3 (as nav/msgs) and the planner will start working.

local_planner's People

Contributors

mmousaei avatar

Watchers

James Cloos avatar  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.