forked from atulsriv/ROS_Winlab2017
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathposition_finder_python.py
49 lines (38 loc) · 1.33 KB
/
position_finder_python.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
#!/usr/bin/env python
import rospy
import math
import tf
from time import sleep
def Main():
while not rospy.is_shutdown():
try:
(trans,rot) = listener.lookupTransform('/map_zero', '/hd_cam_new', rospy.Time(0))
except (tf.LookupException, tf.ConnectivityException, tf.ExtrapolationException):
continue
# trans contains the x, y, and z components of the position of the camera with respect to map (units are in meters)
x = trans[0]
y = trans[1]
z = trans[2]
# rot is a quaternion containing the rotational components of the translation between the map and the camera
# Since euler angles are somewhat easier to work with, we will convert to those:
euler = tf.transformations.euler_from_quaternion(rot)
# Lastly, since the default units are radians, we will convert to degrees since it is more intuitive
roll = math.degrees(euler[0])
pitch = math.degrees(euler[1])
yaw = math.degrees(euler[2])
print "TRANSLATIONAL COMPONENTS"
print "X: " + str(x)
print "Y: " + str(y)
print "Z: " + str(z)
print ""
print "ROTATIONAL COMPONENTS"
print "ROLL: " + str(roll)
print "PITCH: " + str(pitch)
print "YAW: " + str(yaw)
print "------------------------------"
sleep(0.5)
if __name__ == '__main__':
rospy.init_node('position_sender')
listener = tf.TransformListener()
rate = rospy.Rate(10.0)
Main()