Created
November 21, 2013 14:50
-
-
Save davepape/7582885 to your computer and use it in GitHub Desktop.
Hacked version of Leap Motion's "Sample.py" from the v.1.0.9.8409 for Linux beta SDK. Takes the data from the Leap device and sends it out over UDP to a separate pyglet program.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ################################################################################ | |
| # Copyright (C) 2012-2013 Leap Motion, Inc. All rights reserved. # | |
| # Leap Motion proprietary and confidential. Not for distribution. # | |
| # Use subject to the terms of the Leap Motion SDK Agreement available at # | |
| # https://developer.leapmotion.com/sdk_agreement, or another agreement # | |
| # between Leap Motion and you, your company or other organization. # | |
| ################################################################################ | |
| import Leap, sys | |
| from Leap import CircleGesture, KeyTapGesture, ScreenTapGesture, SwipeGesture | |
| from math import * | |
| # Open a UDP socket to send the data out | |
| import socket | |
| outsock = socket.socket(socket.AF_INET, socket.SOCK_DGRAM) | |
| outsock.bind(('',0)) | |
| # Where the data will be sent - the pyglet program will run on this computer, listening to port 5000 | |
| remoteaddr = ('localhost', 5000) | |
| class SampleListener(Leap.Listener): | |
| def on_init(self, controller): | |
| print "Initialized" | |
| def on_connect(self, controller): | |
| print "Connected" | |
| # Enable gestures | |
| controller.enable_gesture(Leap.Gesture.TYPE_CIRCLE); | |
| controller.enable_gesture(Leap.Gesture.TYPE_KEY_TAP); | |
| controller.enable_gesture(Leap.Gesture.TYPE_SCREEN_TAP); | |
| controller.enable_gesture(Leap.Gesture.TYPE_SWIPE); | |
| def on_disconnect(self, controller): | |
| # Note: not dispatched when running in a debugger. | |
| print "Disconnected" | |
| def on_exit(self, controller): | |
| print "Exited" | |
| def on_frame(self, controller): | |
| # Get the most recent frame and report some basic information | |
| frame = controller.frame() | |
| print "Frame id: %d, timestamp: %d, hands: %d, fingers: %d, tools: %d, gestures: %d" % ( | |
| frame.id, frame.timestamp, len(frame.hands), len(frame.fingers), len(frame.tools), len(frame.gestures())) | |
| if not frame.hands.is_empty: | |
| # Get the first hand | |
| hand = frame.hands[0] | |
| # Check if the hand has any fingers | |
| fingers = hand.fingers | |
| if not fingers.is_empty: | |
| # Calculate the hand's average finger tip position | |
| avg_pos = Leap.Vector() | |
| fingernum = 0 | |
| for finger in fingers: | |
| avg_pos += finger.tip_position | |
| # Send position of one fingertip | |
| datastring = 'finger %d %f %f %f' % (fingernum, finger.tip_position[0], finger.tip_position[1], finger.tip_position[2]) | |
| outsock.sendto(datastring, remoteaddr) | |
| fingernum += 1 | |
| avg_pos /= len(fingers) | |
| print "Hand has %d fingers, average finger tip position: %s" % ( | |
| len(fingers), avg_pos) | |
| # Get the hand's sphere radius and palm position | |
| print "Hand sphere radius: %f mm, palm position: %s" % ( | |
| hand.sphere_radius, hand.palm_position) | |
| # Get the hand's normal vector and direction | |
| normal = hand.palm_normal | |
| direction = hand.direction | |
| # Calculate the hand's pitch, roll, and yaw angles | |
| print "Hand pitch: %f degrees, roll: %f degrees, yaw: %f degrees" % ( | |
| direction.pitch * Leap.RAD_TO_DEG, | |
| normal.roll * Leap.RAD_TO_DEG, | |
| direction.yaw * Leap.RAD_TO_DEG) | |
| # Send the position & orientation of the hand | |
| datastring = 'hand %f %f %f %f %f %f' % (hand.palm_position[0], hand.palm_position[1], hand.palm_position[2], degrees(direction.pitch), degrees(normal.roll), degrees(direction.yaw)) | |
| outsock.sendto(datastring, remoteaddr) | |
| # Gestures | |
| for gesture in frame.gestures(): | |
| if gesture.type == Leap.Gesture.TYPE_CIRCLE: | |
| circle = CircleGesture(gesture) | |
| # Determine clock direction using the angle between the pointable and the circle normal | |
| if circle.pointable.direction.angle_to(circle.normal) <= Leap.PI/4: | |
| clockwiseness = "clockwise" | |
| else: | |
| clockwiseness = "counterclockwise" | |
| # Calculate the angle swept since the last frame | |
| swept_angle = 0 | |
| if circle.state != Leap.Gesture.STATE_START: | |
| previous_update = CircleGesture(controller.frame(1).gesture(circle.id)) | |
| swept_angle = (circle.progress - previous_update.progress) * 2 * Leap.PI | |
| print "Circle id: %d, %s, progress: %f, radius: %f, angle: %f degrees, %s" % ( | |
| gesture.id, self.state_string(gesture.state), | |
| circle.progress, circle.radius, swept_angle * Leap.RAD_TO_DEG, clockwiseness) | |
| if gesture.type == Leap.Gesture.TYPE_SWIPE: | |
| swipe = SwipeGesture(gesture) | |
| print "Swipe id: %d, state: %s, position: %s, direction: %s, speed: %f" % ( | |
| gesture.id, self.state_string(gesture.state), | |
| swipe.position, swipe.direction, swipe.speed) | |
| if gesture.type == Leap.Gesture.TYPE_KEY_TAP: | |
| keytap = KeyTapGesture(gesture) | |
| print "Key Tap id: %d, %s, position: %s, direction: %s" % ( | |
| gesture.id, self.state_string(gesture.state), | |
| keytap.position, keytap.direction ) | |
| if gesture.type == Leap.Gesture.TYPE_SCREEN_TAP: | |
| screentap = ScreenTapGesture(gesture) | |
| print "Screen Tap id: %d, %s, position: %s, direction: %s" % ( | |
| gesture.id, self.state_string(gesture.state), | |
| screentap.position, screentap.direction ) | |
| if not (frame.hands.is_empty and frame.gestures().is_empty): | |
| print "" | |
| def state_string(self, state): | |
| if state == Leap.Gesture.STATE_START: | |
| return "STATE_START" | |
| if state == Leap.Gesture.STATE_UPDATE: | |
| return "STATE_UPDATE" | |
| if state == Leap.Gesture.STATE_STOP: | |
| return "STATE_STOP" | |
| if state == Leap.Gesture.STATE_INVALID: | |
| return "STATE_INVALID" | |
| def main(): | |
| # Create a sample listener and controller | |
| listener = SampleListener() | |
| controller = Leap.Controller() | |
| # Have the sample listener receive events from the controller | |
| controller.add_listener(listener) | |
| # Keep this process running until Enter is pressed | |
| print "Press Enter to quit..." | |
| sys.stdin.readline() | |
| # Remove the sample listener when done | |
| controller.remove_listener(listener) | |
| if __name__ == "__main__": | |
| main() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment