welcome: please sign in
location: Diff for "move3d"
Differences between revisions 7 and 8
Revision 7 as of 2014-07-17 12:40:35
Size: 3846
Editor: bvadant
Comment:
Revision 8 as of 2015-09-22 13:47:00
Size: 4122
Editor: aboeuf
Comment: Acknowledgements
Deletions are marked like this. Additions are marked like this.
Line 110: Line 110:


== Acknowledgments ==

This work has been partially supported by (and used in) the following projects:
[[http://www.arcas-project.eu/ | ARCAS]]
[[http://www.dexmart.eu/ | DEXMART]]
[[http://projetromeo.com/en/partners | ROMEO]]
[[http://www.saphari.eu/ | SAPHARI]]

Move3D

move3d_screenshot1.jpg

move3d_screenshot2.jpg

Programming system for motion planning, includes services like collision detection, robot kinematics and an OpenGL viewer.

Move3D is used to develop algorithms to compute kinematic (geometric) paths in cluttered 3D environments for a generic multi-body system with any type of links, it is also used to compute molecular (nano particles) motions. The configuration space representation coded inside the software enables the development of generic planning methods implemented in C/C++ such as probabilistic roadmaps (PRM) and lately rapidly exploring random trees (RRTs). The newest investigation concerns the study of large molecular systems and human aware motion planning for friendly robots.

Installation

Move3D comes as a set of libraries and executables. To name a few:

  • libmove3d (the core library)

  • libmove3d-hri (the human-robot interaction library)

  • libmove3d-planners (the planning library )

  • move3d-studio (the graphical development environment)

Install from robotpkg

You will have to install robotpkg and robotpkg/wip HowToHere

  • 1) Go to wip/libmove3d and install the package
    •   make update 
    2) Go to wip/libmove3d-hri and install the package
    •   make update 
    3) Check the install version of boost : if you are on ubuntu 12.10 or 13.04, the default version of boost is the version 1.49 which contains a bug. You HAVE TO install another release. Don't worry, it is fairly easy :
    •   sudo apt-get install libboost1.50-all-dev
    4) Go to wip/libmove3d-planners and install the package
    •   make update 
    5) Install the last version of qwt
    •   sudo apt-get install libqwt-dev 'or' sudo yum install qwt
    6) Go to wip/move3d-studio and Here you have the choice
    • a) You only want Move3d-studio
      •    make update 
      b) You want Move3d-remote
      •    make PKG_OPTIONS.move3d-studio=qtremote update confirm

Get the source from git repository

Get the four libraries

cd ${HOME}/openrobots/src
git clone git://trac.laas.fr/git/robots/libmove3d
git clone git://trac.laas.fr/git/robots/libmove3d-hri
git clone git://trac.laas.fr/git/robots/libmove3d-planners
git clone git://trac.laas.fr/git/robots/move3d-studio

Build and install

All libraires and executables use CMake : CMake Doc

If not set already, add the pkgconfig folder to the PKG_CONFIG_PATH environment variable :

export PKG_CONFIG_PATH="${PKG_CONFIG_PATH}:${HOME}/openrobots/lib/pkgconfig"

Then you have to configure and install the libraries and the executable :

  • For the libraries :

cd ${HOME}/openrobots/src/libmove3d*    * = ""|-hri|-planners 
mkdir build
cd build
cmake .. -DCMAKE_INSTALL_PREFIX=${HOME}/openrobots
make install
  • For the executable

cd ${HOME}/openrobots/src/move3d-studio
mkdir build-qt
cd build-qt
cmake ..  -DMOVE3D_QT=ON -DCMAKE_INSTALL_PREFIX=${HOME}/openrobots
cmake ..
make install

P3D Files

In order to run move3d, you will need p3d files that describe the environment and the robot. You can get p3d files like that :

cd ~/openrobots/share
mkdir move3d && cd move3d
git clone git://trac.laas.fr/git/robots/move3d-assets assets

Example use

move3d-qt-studio -f ${HOME}/openrobots/share/move3d/assets/CostDistanceKCD/2dof/Stones.p3d

Documentation

Doxygen documentation is available online.

Acknowledgments

This work has been partially supported by (and used in) the following projects: ARCAS DEXMART ROMEO SAPHARI

OpenrobotsWiki: move3d (last edited 2017-05-02 16:19:32 by matthieu)