-
Notifications
You must be signed in to change notification settings - Fork 1
/
hand_eye_calibartion.launch.py
41 lines (39 loc) · 1.06 KB
/
hand_eye_calibartion.launch.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
""" Static transform publisher acquired via MoveIt 2 hand-eye calibration """
""" EYE-IN-HAND: wrist_3_link -> flange """
from launch import LaunchDescription
from launch_ros.actions import Node
def generate_launch_description() -> LaunchDescription:
nodes = [
Node(
package="tf2_ros",
executable="static_transform_publisher",
output="log",
arguments=[
"--frame-id",
"wrist_3_link",
"--child-frame-id",
"flange",
"--x",
"0.021",
"--y",
"-0.039",
"--z",
"0.275",
"--qx",
"0",
"--qy",
"0",
"--qz",
"0",
"--qw",
"1",
# "--roll",
# "-0",
# "--pitch",
# "0",
# "--yaw",
# "-0",
],
),
]
return LaunchDescription(nodes)