Update
This commit is contained in:
parent
d0a27ed3bc
commit
1ec26b4ef6
@ -19,9 +19,7 @@ def tf_lookup(object_name):
|
||||
continue
|
||||
|
||||
object_angles = tf.transformations.euler_from_quaternion([rot[0] , rot[1] , rot[2], rot[3]])
|
||||
print(object_angles)
|
||||
return
|
||||
object_angles[0] += radians(90)
|
||||
object_angles = (object_angles[0] += radians(90), object_angles[1], object_angles[2])
|
||||
target_quat = tf.transformations.quaternion_from_euler(object_angles[0], object_angles[1], object_angles[2])
|
||||
target_pose = Pose()
|
||||
target_pose.position.x = trans[0]
|
||||
|
||||
Loading…
Reference in New Issue
Block a user