项目作者: atenpas

项目描述 :
Generate grasp pose candidates in point clouds
高级语言: C++
项目地址: git://github.com/atenpas/gpg.git
创建时间: 2017-05-23T00:58:41Z
项目社区:https://github.com/atenpas/gpg

开源协议:BSD 2-Clause "Simplified" License

下载


Grasp Pose Generator (GPG)

1) Overview

This package creates grasp candidates for 3D point clouds and can check if they are antipodal using geometric
conditions. To use the package, you only need PCL and Eigen (see below).

This package is part of GPD. Please notice that no machine learning is included in this part. The package just
generates 6-DOF grasp poses for a 2-finger grasp.

2) Requirements

  1. PCL 1.7 or later
  2. Eigen 3.0 or later

3) Compilation

  1. Open a terminal and clone the grasp_candidates_generator repository into some folder:

    1. $ cd <location_of_your_workspace>
    2. $ git clone https://github.com/atenpas/gpg.git
  2. Build the project:

    1. $ cd grasp_candidates_generator
    2. $ mkdir build && cd build
    3. $ cmake ..
    4. $ make
  3. (optional) Install the project:

    1. $ sudo make install

4) Generate Grasp Candidates for a Point Cloud File

Run the following from within the build folder:

  1. $ ./generate_candidates ../cfg/params.cfg ~/data/some_cloud.pcd

5) Parameters

Brief explanations of parameters are given in cfg/params.cfg.

6) Citation

If you like this package and use it in your own work, please cite our arXiv paper:

  1. @misc{1603.01564,
  2. Author = {Marcus Gualtieri and Andreas ten Pas and Kate Saenko and Robert Platt},
  3. Title = {High precision grasp pose detection in dense clutter},
  4. Year = {2016},
  5. Eprint = {arXiv:1603.01564},
  6. }