shape_grasp_planner.h
Go to the documentation of this file.
1 /*
2  * Copyright 2015, Fetch Robotics Inc.
3  * Copyright 2013-2014, Unbounded Robotics Inc.
4  * All rights reserved.
5  *
6  * Redistribution and use in source and binary forms, with or without
7  * modification, are permitted provided that the following conditions are met:
8  *
9  * * Redistributions of source code must retain the above copyright
10  * notice, this list of conditions and the following disclaimer.
11  * * Redistributions in binary form must reproduce the above copyright
12  * notice, this list of conditions and the following disclaimer in the
13  * documentation and/or other materials provided with the distribution.
14  * * Neither the name of the Unbounded Robotics, Inc. nor the names of its
15  * contributors may be used to endorse or promote products derived from
16  * this software without specific prior written permission.
17  *
18  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
19  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21  * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
22  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
23  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
24  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
25  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
26  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
27  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
28  * POSSIBILITY OF SUCH DAMAGE.
29  */
30 
31 // Author: Michael Ferguson
32 
33 #ifndef SIMPLE_GRASPING_SHAPE_GRASP_PLANNER_H
34 #define SIMPLE_GRASPING_SHAPE_GRASP_PLANNER_H
35 
36 #include <ros/ros.h>
37 #include <grasping_msgs/GraspableObject.h>
38 
39 namespace simple_grasping
40 {
41 
47 {
48 public:
54 
55  virtual int plan(const grasping_msgs::Object& object,
56  std::vector<moveit_msgs::Grasp>& grasps);
57 
58 private:
68  int createGrasp(const geometry_msgs::PoseStamped& pose,
69  double gripper_opening,
70  double gripper_pitch,
71  double x_offset,
72  double z_offset,
73  double quality);
74 
86  int createGraspSeries(const geometry_msgs::PoseStamped& pose,
87  double depth, double width, double height,
88  bool use_vertical = true);
89 
90  trajectory_msgs::JointTrajectory makeGraspPosture(double pose);
91 
92  // gripper model
93  std::string left_joint_, right_joint_;
94  double max_opening_;
95  double max_effort_;
97  double tool_offset_;
98  double finger_depth_;
100 
101  // approach model
102  std::string approach_frame_;
105 
106  // retreat model
107  std::string retreat_frame_;
110 
111  // storing of internal grasps as we generate them
112  std::vector<moveit_msgs::Grasp> grasps_;
113 };
114 
115 } // namespace simple_grasping
116 
117 #endif // SIMPLE_GRASPING_SHAPE_GRASP_PLANNER_H
simple_grasping::ShapeGraspPlanner
A simple grasp planner that uses the bounding box shape to generate viable grasps.
Definition: shape_grasp_planner.h:46
simple_grasping::ShapeGraspPlanner::grasp_duration_
double grasp_duration_
Definition: shape_grasp_planner.h:96
pick_and_place.grasps
grasps
Definition: pick_and_place.py:161
ros.h
simple_grasping::ShapeGraspPlanner::right_joint_
std::string right_joint_
Definition: shape_grasp_planner.h:93
simple_grasping::ShapeGraspPlanner::ShapeGraspPlanner
ShapeGraspPlanner(ros::NodeHandle &nh)
Constructor, loads grasp planner configuration from ROS params.
Definition: shape_grasp_planner.cpp:75
simple_grasping::ShapeGraspPlanner::createGrasp
int createGrasp(const geometry_msgs::PoseStamped &pose, double gripper_opening, double gripper_pitch, double x_offset, double z_offset, double quality)
Generate a grasp, add it to internal grasps_.
Definition: shape_grasp_planner.cpp:108
simple_grasping::ShapeGraspPlanner::approach_frame_
std::string approach_frame_
Definition: shape_grasp_planner.h:102
simple_grasping::ShapeGraspPlanner::retreat_desired_translation_
double retreat_desired_translation_
Definition: shape_grasp_planner.h:109
simple_grasping::ShapeGraspPlanner::max_effort_
double max_effort_
Definition: shape_grasp_planner.h:95
simple_grasping::ShapeGraspPlanner::approach_min_translation_
double approach_min_translation_
Definition: shape_grasp_planner.h:103
simple_grasping::ShapeGraspPlanner::grasps_
std::vector< moveit_msgs::Grasp > grasps_
Definition: shape_grasp_planner.h:112
pick_and_place.height
height
Definition: pick_and_place.py:131
simple_grasping::ShapeGraspPlanner::finger_depth_
double finger_depth_
Definition: shape_grasp_planner.h:98
simple_grasping::ShapeGraspPlanner::left_joint_
std::string left_joint_
Definition: shape_grasp_planner.h:93
simple_grasping::ShapeGraspPlanner::retreat_min_translation_
double retreat_min_translation_
Definition: shape_grasp_planner.h:108
simple_grasping
Definition: cloud_tools.h:44
pick_and_place.pose
pose
Definition: pick_and_place.py:173
simple_grasping::ShapeGraspPlanner::max_opening_
double max_opening_
Definition: shape_grasp_planner.h:94
simple_grasping::ShapeGraspPlanner::retreat_frame_
std::string retreat_frame_
Definition: shape_grasp_planner.h:107
simple_grasping::ShapeGraspPlanner::createGraspSeries
int createGraspSeries(const geometry_msgs::PoseStamped &pose, double depth, double width, double height, bool use_vertical=true)
Generate a series of grasps around the edge of a shape.
Definition: shape_grasp_planner.cpp:162
simple_grasping::ShapeGraspPlanner::makeGraspPosture
trajectory_msgs::JointTrajectory makeGraspPosture(double pose)
Definition: shape_grasp_planner.cpp:292
simple_grasping::ShapeGraspPlanner::gripper_tolerance_
double gripper_tolerance_
Definition: shape_grasp_planner.h:99
simple_grasping::ShapeGraspPlanner::plan
virtual int plan(const grasping_msgs::Object &object, std::vector< moveit_msgs::Grasp > &grasps)
Definition: shape_grasp_planner.cpp:215
simple_grasping::ShapeGraspPlanner::tool_offset_
double tool_offset_
Definition: shape_grasp_planner.h:97
ros::NodeHandle
simple_grasping::ShapeGraspPlanner::approach_desired_translation_
double approach_desired_translation_
Definition: shape_grasp_planner.h:104


simple_grasping
Author(s): Michael Ferguson
autogenerated on Wed Apr 26 2023 02:18:53