-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathCTRToolbox.py
402 lines (310 loc) · 9.88 KB
/
CTRToolbox.py
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
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
# -*- coding: utf-8 -*-
"""Toolbox: compute reward, create scene, ...
"""
__authors__ = "PSC"
__contact__ = "[email protected]"
__version__ = "1.0.0"
__copyright__ = "(c) 2021, Robocath, CNRS, Inria"
__date__ = "Dec 03 2021"
import numpy as np
import Sofa
import Sofa.Core
import Sofa.Simulation
import SofaRuntime
from splib3.animation.animate import Animation
SofaRuntime.importPlugin("Sofa.Component")
class RewardShaper(Sofa.Core.Controller):
"""Compute the reward.
Methods:
-------
__init__: Initialization of all arguments.
getReward: Compute the reward.
update: Initialize the value of cost.
Arguments:
---------
rootNode: <Sofa.Core>
The scene.
goal_pos: coordinates
The position of the goal.
effMO: <MechanicalObject>
The mechanical object of the element to move.
cost:
Evolution of the distance between object and goal.
"""
def __init__(self, *args, **kwargs):
"""Initialization of all arguments.
Parameters:
----------
kwargs: Dictionary
Initialization of the arguments.
Returns:
-------
None.
"""
Sofa.Core.Controller.__init__(self, *args, **kwargs)
self.rootNode = None
if kwargs["rootNode"]:
self.root = kwargs["rootNode"]
self.goal_pos = None
if kwargs["goalPos"]:
self.goal_pos = kwargs["goalPos"]
self.init_dist = None
self.prev_dist = None
def getReward(self):
"""Compute the reward.
Parameters:
----------
None.
Returns:
-------
The reward and the cost.
"""
tip = self.root.InstrumentCombined.DOFs.position[-1][:3]
current_dist = np.linalg.norm(np.array(tip)-np.array(self.goal_pos))
reward = max((self.prev_dist - current_dist)/self.prev_dist, 0)
if current_dist < self.prev_dist:
self.prev_dist = current_dist
return min(3*reward**(1/2), 1.0), current_dist
def update(self):
"""Update function.
This function is used as an initialization function.
Parameters:
----------
None.
Arguments:
---------
None.
"""
tip = self.root.InstrumentCombined.DOFs.position[-1][:3]
self.init_dist = np.linalg.norm(np.array(tip)-np.array(self.goal_pos))
self.prev_dist = self.init_dist
class GoalSetter(Sofa.Core.Controller):
"""Compute the goal.
Methods:
-------
__init__: Initialization of all arguments.
update: Initialize the value of cost.
Arguments:
---------
goalMO: <MechanicalObject>
The mechanical object of the goal.
goalPos: coordinates
The coordinates of the goal.
"""
def __init__(self, *args, **kwargs):
"""Initialization of all arguments.
Parameters:
----------
kwargs: Dictionary
Initialization of the arguments.
Returns:
-------
None.
"""
Sofa.Core.Controller.__init__(self, *args, **kwargs)
self.rootNode = None
if kwargs["rootNode"]:
self.rootNode = kwargs["rootNode"]
self.goalMO = None
if kwargs["goalMO"]:
self.goalMO = kwargs["goalMO"]
self.goalPos = None
if kwargs["goalPos"]:
self.goalPos = kwargs["goalPos"]
def update(self):
"""Set the position of the goal.
This function is used as an initialization function.
Parameters:
----------
None.
Arguments:
---------
None.
"""
with self.goalMO.position.writeable() as position:
print("update", self.goalPos)
position[0] = self.goalPos
def set_mo_pos(self, goal):
"""Modify the goal.
Not used here.
"""
pass
def _getGoalPos(root):
"""Get XYZ position of the goal.
Parameters:
----------
rootNode: <Sofa.Core>
The scene.
Returns:
-------
The position of the goal.
"""
return root.Goal.GoalMO.position[0]
def getState(root):
"""Compute the state of the environment/agent.
Parameters:
----------
rootNode: <Sofa.Core>
The scene.
Returns:
-------
State: list of float
The state of the environment/agent.
"""
xtips = []
rotations = []
for instrument in range(3):
xtips.append(root.InstrumentCombined.m_ircontroller.xtip.value[instrument].tolist())
rotations.append(root.InstrumentCombined.m_ircontroller.rotationInstrument.value[instrument].tolist())
tip = root.InstrumentCombined.DOFs.position[-1][:3].tolist()
goal_pos = _getGoalPos(root).tolist()
state = xtips + rotations + tip + goal_pos
return state
def getReward(root):
"""Compute the reward using Reward.getReward().
Parameters:
----------
rootNode: <Sofa.Core>
The scene.
Returns:
-------
done, reward
"""
reward, cost = root.Reward.getReward()
if cost <= 3.0:
return True, reward
return False, reward
def get_ircontroller_state(node, instrument=0):
"""
Get state (translation, rotation) of th Interventional Radiology Controller
"""
return [float(node.m_ircontroller.xtip.value[instrument]),
float(node.m_ircontroller.rotationInstrument.value[instrument])]
def startCmd(root, action, duration):
"""Initialize the command from root and action.
Parameters:
----------
rootNode: <Sofa.Core>
The scene.
action: int
The action.
duration: float
Duration of the animation.
Returns:
------
None.
"""
scale = int(duration/0.01 + 1)
controlled_instrument, cmd_translation, cmd_rotation = action_to_command(action, scale)
source = get_ircontroller_state(root.InstrumentCombined, instrument=controlled_instrument)
target_translation = source[0] + cmd_translation
target = [target_translation if target_translation > 0 else 0.1, source[1] + cmd_rotation]
start_cmd(root, root.InstrumentCombined, source, target, duration, controlled_instrument)
def start_cmd(rootNode, IRC_node, source, target, duration, instrument=0):
def execute_animation(controller, anim_source, anim_target, factor, anim_instrument):
"""
Execute animation on the IRC to go from source to target
"""
with controller.xtip.writeable() as xtip:
xtip[anim_instrument] = anim_source[0] + (anim_target[0] - anim_source[0]) * factor
if anim_instrument == 0:
with controller.rotationInstrument.writeable() as rotation:
rotation[0] = anim_source[1] + (anim_target[1] - anim_source[1]) * factor
rootNode.AnimationManager.addAnimation(
Animation(
onUpdate=execute_animation,
params={"controller": IRC_node.m_ircontroller,
"anim_source": source,
"anim_target": target,
"anim_instrument": instrument},
duration=duration, mode="once"))
return
def action_to_command(action, scale):
"""Link between Gym action (int) and SOFA command (displacement of cables).
Parameters:
----------
action: int
The number of the action (Gym).
Returns:
-------
The command (number of the cabl and its displacement).
"""
if action == 0:
controlled_instrument = 0
cmd_translation = 2.0 * scale / 2.0
cmd_rotation = 0.0
elif action == 1:
controlled_instrument = 0
cmd_translation = 0.0
cmd_rotation = 1/15 * scale / 2.0
elif action == 2:
controlled_instrument = 0
cmd_translation = 0.0
cmd_rotation = -1/15 * scale / 2.0
elif action == 3:
controlled_instrument = 0
cmd_translation = -0.7 * scale / 2.0
cmd_rotation = 0.0
elif action == 4:
controlled_instrument = 1
cmd_translation = 2.0 * scale / 2.5
cmd_rotation = 0.0
elif action == 5:
controlled_instrument = 1
cmd_translation = 0.0
cmd_rotation = 1/15 * scale / 2.5
elif action == 6:
controlled_instrument = 1
cmd_translation = 0.0
cmd_rotation = -1/15 * scale / 2.5
elif action == 7:
controlled_instrument = 1
cmd_translation = -0.7 * scale / 2.5
cmd_rotation = 0.0
elif action == 8:
controlled_instrument = 2
cmd_translation = 2.0 * scale / 3.0
cmd_rotation = 0.0
elif action == 9:
controlled_instrument = 2
cmd_translation = 0.0
cmd_rotation = 1/15 * scale / 3.0
elif action == 10:
controlled_instrument = 2
cmd_translation = 0.0
cmd_rotation = -1/15 * scale / 3.0
elif action == 11:
controlled_instrument = 2
cmd_translation = -0.7 * scale / 3.0
cmd_rotation = 0.0
else:
raise NotImplementedError("Action is not in range 0 - 11")
return controlled_instrument, cmd_translation, cmd_rotation
def getPos(root):
"""Retun the position of the mechanical object of interest.
Parameters:
----------
root: <Sofa root>
The root of the scene.
Returns:
-------
_: list
The position(s) of the object(s) of the scene.
"""
return
def setPos(root, pos):
"""Set the position of the mechanical object of interest.
Parameters:
----------
root: <Sofa root>
The root of the scene.
pos: list
The position(s) of the object(s) of the scene.
Returns:
-------
None.
Note:
----
Don't forget to init the new value of the position.
"""
return