-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgrippers.py
More file actions
240 lines (195 loc) · 9.25 KB
/
Copy pathgrippers.py
File metadata and controls
240 lines (195 loc) · 9.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
"""Classes to handle gripper dynamics."""
import os
import numpy as np
from cliport.utils import pybullet_utils
import pybullet as p
SPATULA_BASE_URDF = 'ur5/spatula/spatula-base.urdf'
SUCTION_BASE_URDF = 'ur5/suction/suction-base.urdf'
SUCTION_HEAD_URDF = 'ur5/suction/suction-head.urdf'
class Gripper:
"""Base gripper class."""
def __init__(self, assets_root):
self.assets_root = assets_root
self.activated = False
def step(self):
"""This function can be used to create gripper-specific behaviors."""
return
def activate(self, objects):
del objects
return
def release(self):
return
class Spatula(Gripper):
"""Simulate simple spatula for pushing."""
def __init__(self, assets_root, robot, ee, obj_ids): # pylint: disable=unused-argument
"""Creates spatula and 'attaches' it to the robot."""
super().__init__(assets_root)
# Load spatula model.
pose = ((0.487, 0.109, 0.438), p.getQuaternionFromEuler((np.pi, 0, 0)))
base = pybullet_utils.load_urdf(
p, os.path.join(self.assets_root, SPATULA_BASE_URDF), pose[0], pose[1])
p.createConstraint(
parentBodyUniqueId=robot,
parentLinkIndex=ee,
childBodyUniqueId=base,
childLinkIndex=-1,
jointType=p.JOINT_FIXED,
jointAxis=(0, 0, 0),
parentFramePosition=(0, 0, 0),
childFramePosition=(0, 0, 0.01))
class Suction(Gripper):
"""Simulate simple suction dynamics."""
def __init__(self, assets_root, robot, ee, obj_ids):
"""Creates suction and 'attaches' it to the robot.
Has special cases when dealing with rigid vs deformables. For rigid,
only need to check contact_constraint for any constraint. For soft
bodies (i.e., cloth or bags), use cloth_threshold to check distances
from gripper body (self.body) to any vertex in the cloth mesh. We
need correct code logic to handle gripping potentially a rigid or a
deformable (and similarly for releasing).
To be clear on terminology: 'deformable' here should be interpreted
as a PyBullet 'softBody', which includes cloths and bags. There's
also cables, but those are formed by connecting rigid body beads, so
they can use standard 'rigid body' grasping code.
To get the suction gripper pose, use p.getLinkState(self.body, 0),
and not p.getBasePositionAndOrientation(self.body) as the latter is
about z=0.03m higher and empirically seems worse.
Args:
assets_root: str for root directory with assets.
robot: int representing PyBullet ID of robot.
ee: int representing PyBullet ID of end effector link.
obj_ids: list of PyBullet IDs of all suctionable objects in the env.
"""
super().__init__(assets_root)
# Load suction gripper base model (visual only).
pose = ((0.487, 0.109, 0.438), p.getQuaternionFromEuler((np.pi, 0, 0)))
base = pybullet_utils.load_urdf(
p, os.path.join(self.assets_root, SUCTION_BASE_URDF), pose[0], pose[1])
p.createConstraint(
parentBodyUniqueId=robot,
parentLinkIndex=ee,
childBodyUniqueId=base,
childLinkIndex=-1,
jointType=p.JOINT_FIXED,
jointAxis=(0, 0, 0),
parentFramePosition=(0, 0, 0),
childFramePosition=(0, 0, 0.01))
# Load suction tip model (visual and collision) with compliance.
# urdf = 'assets/ur5/suction/suction-head.urdf'
pose = ((0.487, 0.109, 0.347), p.getQuaternionFromEuler((np.pi, 0, 0)))
self.body = pybullet_utils.load_urdf(
p, os.path.join(self.assets_root, SUCTION_HEAD_URDF), pose[0], pose[1])
constraint_id = p.createConstraint(
parentBodyUniqueId=robot,
parentLinkIndex=ee,
childBodyUniqueId=self.body,
childLinkIndex=-1,
jointType=p.JOINT_FIXED,
jointAxis=(0, 0, 0),
parentFramePosition=(0, 0, 0),
childFramePosition=(0, 0, -0.08))
p.changeConstraint(constraint_id, maxForce=50)
# Reference to object IDs in environment for simulating suction.
self.obj_ids = obj_ids
# Indicates whether gripper is gripping anything (rigid or def).
self.activated = False
# For gripping and releasing rigid objects.
self.contact_constraint = None
# Defaults for deformable parameters, and can override in tasks.
self.def_ignore = 0.035 # TODO(daniel) check if this is needed
self.def_threshold = 0.030
self.def_nb_anchors = 1
# Track which deformable is being gripped (if any), and anchors.
self.def_grip_item = None
self.def_grip_anchors = []
# Determines release when gripped deformable touches a rigid/def.
# TODO(daniel) should check if the code uses this -- not sure?
self.def_min_vetex = None
self.def_min_distance = None
# Determines release when a gripped rigid touches defs (e.g. cloth-cover).
self.init_grip_distance = None
self.init_grip_item = None
def activate(self):
"""Simulate suction using a rigid fixed constraint to contacted object."""
# TODO(andyzeng): check deformables logic.
# del def_ids
if not self.activated:
points = p.getContactPoints(bodyA=self.body, linkIndexA=0)
# print(points)
if points:
# Handle contact between suction with a rigid object.
for point in points:
obj_id, contact_link = point[2], point[4]
if obj_id in self.obj_ids['rigid']:
body_pose = p.getLinkState(self.body, 0)
obj_pose = p.getBasePositionAndOrientation(obj_id)
world_to_body = p.invertTransform(body_pose[0], body_pose[1])
obj_to_body = p.multiplyTransforms(world_to_body[0],
world_to_body[1],
obj_pose[0], obj_pose[1])
self.contact_constraint = p.createConstraint(
parentBodyUniqueId=self.body,
parentLinkIndex=0,
childBodyUniqueId=obj_id,
childLinkIndex=contact_link,
jointType=p.JOINT_FIXED,
jointAxis=(0, 0, 0),
parentFramePosition=obj_to_body[0],
parentFrameOrientation=obj_to_body[1],
childFramePosition=(0, 0, 0),
childFrameOrientation=(0, 0, 0))
self.activated = True
def release(self):
"""Release gripper object, only applied if gripper is 'activated'.
If suction off, detect contact between gripper and objects.
If suction on, detect contact between picked object and other objects.
To handle deformables, simply remove constraints (i.e., anchors).
Also reset any relevant variables, e.g., if releasing a rigid, we
should reset init_grip values back to None, which will be re-assigned
in any subsequent grasps.
"""
if self.activated:
self.activated = False
# Release gripped rigid object (if any).
if self.contact_constraint is not None:
try:
p.removeConstraint(self.contact_constraint)
self.contact_constraint = None
except: # pylint: disable=bare-except
pass
self.init_grip_distance = None
self.init_grip_item = None
# Release gripped deformable object (if any).
if self.def_grip_anchors:
for anchor_id in self.def_grip_anchors:
p.removeConstraint(anchor_id)
self.def_grip_anchors = []
self.def_grip_item = None
self.def_min_vetex = None
self.def_min_distance = None
def detect_contact(self):
"""Detects a contact with a rigid object."""
body, link = self.body, 0
if self.activated and self.contact_constraint is not None:
try:
info = p.getConstraintInfo(self.contact_constraint)
body, link = info[2], info[3]
except: # pylint: disable=bare-except
self.contact_constraint = None
pass
# Get all contact points between the suction and a rigid body.
points = p.getContactPoints(bodyA=body, linkIndexA=link)
# print(points)
# exit()
if self.activated:
points = [point for point in points if point[2] != self.body]
# # We know if len(points) > 0, contact is made with SOME rigid item.
if points:
return True
return False
def check_grasp(self):
"""Check a grasp (object in contact?) for picking success."""
suctioned_object = None
if self.contact_constraint is not None:
suctioned_object = p.getConstraintInfo(self.contact_constraint)[2]
return suctioned_object is not None