00001 #!/usr/bin/env python 00002 # Software License Agreement (BSD License) 00003 # 00004 # Copyright (c) 2008, Willow Garage, Inc. 00005 # All rights reserved. 00006 # 00007 # Redistribution and use in source and binary forms, with or without 00008 # modification, are permitted provided that the following conditions 00009 # are met: 00010 # 00011 # * Redistributions of source code must retain the above copyright 00012 # notice, this list of conditions and the following disclaimer. 00013 # * Redistributions in binary form must reproduce the above 00014 # copyright notice, this list of conditions and the following 00015 # disclaimer in the documentation and/or other materials provided 00016 # with the distribution. 00017 # * Neither the name of the Willow Garage nor the names of its 00018 # contributors may be used to endorse or promote products derived 00019 # from this software without specific prior written permission. 00020 # 00021 # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 00022 # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 00023 # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS 00024 # FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE 00025 # COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, 00026 # INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, 00027 # BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; 00028 # LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER 00029 # CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 00030 # LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN 00031 # ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 00032 # POSSIBILITY OF SUCH DAMAGE. 00033 # 00034 # Revision $Id: add_two_ints_client 3357 2009-01-13 07:13:05Z jfaustwg $ 00035 00036 ## Simple demo of a rospy service client that calls a service to add 00037 ## two integers. 00038 00039 PKG = 'door_handle_detector' # this package name 00040 00041 import roslib; roslib.load_manifest(PKG) 00042 00043 import sys 00044 import os 00045 import string 00046 00047 import rospy 00048 from geometry_msgs.msg import Point, Point32 00049 from door_msgs.msg import Door 00050 from door_handle_detector.srv import DoorDetector 00051 00052 00053 00054 def detect_door(door_estimateion): 00055 # block until the door_handle_detector service is available 00056 print "Waiting for service...", rospy.resolve_name('door_handle_detector') 00057 rospy.wait_for_service('door_handle_detector') 00058 print "Service is available" 00059 try: 00060 # create a handle to the add_two_ints service 00061 find_door = rospy.ServiceProxy('door_handle_detector', Door) 00062 door_position = find_door(door_estimation) 00063 print "Request finished" 00064 return door_position 00065 except rospy.ServiceException, e: 00066 print "Service call failed: %s"%e 00067 00068 00069 00070 00071 00072 def move_arm(x, y, z, rx, ry, rz, w): 00073 print "Create publisher to arm" 00074 pub = rospy.Publisher('/arm_trajectory/command', PoseStamped) 00075 00076 m = PoseStamped() 00077 m.header.frame_id = 'odom_combined' 00078 m.pose.position.x = x 00079 m.pose.position.y = y 00080 m.pose.position.z = z 00081 m.pose.orientation.x = rx 00082 m.pose.orientation.y = ry 00083 m.pose.orientation.z = rz 00084 m.pose.orientation.w = w 00085 00086 print "Publish pose command to arm" 00087 pub.publish(m) 00088 rospy.init_node('pub', anonymous=True) 00089 00090 00091 00092 00093 00094 if __name__ == "__main__": 00095 00096 door_estimate = Door() 00097 door_estimate.frame_p1.x = 1.5 00098 door_estimate.frame_p1.y = 0.5 00099 door_estimate.frame_p2.x = 1.5 00100 door_estimate.frame_p2.y = -0.5 00101 door_estimate.header.frame_id = "odom_combined" 00102 00103 # find door 00104 #door_position = detect_door(door_estimate) 00105 door_position = door_estimate 00106 00107 tmp = Point32() 00108 tmp.x = door_position.frame_p1.x - door_position.frame_p2.x 00109 tmp.y = door_position.frame_p1.y - door_position.frame_p2.y 00110 tmp.z = door_position.frame_p1.z - door_position.frame_p2.z 00111 print "finished" 00112 00113 #print "Frame found at (%s, %s) (%s, %s)"%(door_position.door.frame_p1.x, door_position.door.frame_p1.y, 00114 # door_position.door.frame_p2.x, door_position.door.frame_p2.y) 00115 #print "Door found at (%s, %s) (%s, %s)"%(door_position.door.door_p1.x, door_position.door.door_p1.y, 00116 # door_position.door.door_p2.x, door_position.door.door_p2.y) 00117 #print "Handle found at (%s, %s)"%(door_position.door.handle.x, door_position.door.handle.y) 00118 00119 00120