質問内容
python+keras+LeapMotionで手の形の判別をしてみた。というサイトを参考にpythonでleapmotionを扱ってみようと考えているのですが、サイト内にあるようにSample.pyを実行すると「モジュールが見つかりません。」といったエラーが出てしまいます。どのようにすれば解決しますか?
Sample.pyは前述したサイト内にあるLeapMotionの旧?公式サイトからインストールしたものの中にありました。
ソースコード
Sample.py
python
1import Leap, sys, thread, time 2 3 4class SampleListener(Leap.Listener): 5 finger_names = ['Thumb', 'Index', 'Middle', 'Ring', 'Pinky'] 6 bone_names = ['Metacarpal', 'Proximal', 'Intermediate', 'Distal'] 7 8 def on_init(self, controller): 9 print ("Initialized") 10 11 def on_connect(self, controller): 12 print ("Connected") 13 14 def on_disconnect(self, controller): 15 # Note: not dispatched when running in a debugger. 16 print ("Disconnected") 17 18 def on_exit(self, controller): 19 print ("Exited") 20 21 def on_frame(self, controller): 22 # Get the most recent frame and report some basic information 23 frame = controller.frame() 24 25 print ("Frame id: %d, timestamp: %d, hands: %d, fingers: %d" % ( 26 frame.id, frame.timestamp, len(frame.hands), len(frame.fingers))) 27 28 # Get hands 29 for hand in frame.hands: 30 31 handType = "Left hand" if hand.is_left else "Right hand" 32 33 print (" %s, id %d, position: %s" % ( 34 handType, hand.id, hand.palm_position)) 35 36 # Get the hand's normal vector and direction 37 normal = hand.palm_normal 38 direction = hand.direction 39 40 # Calculate the hand's pitch, roll, and yaw angles 41 print (" pitch: %f degrees, roll: %f degrees, yaw: %f degrees" % ( 42 direction.pitch * Leap.RAD_TO_DEG, 43 normal.roll * Leap.RAD_TO_DEG, 44 direction.yaw * Leap.RAD_TO_DEG)) 45 46 # Get arm bone 47 arm = hand.arm 48 print (" Arm direction: %s, wrist position: %s, elbow position: %s" % ( 49 arm.direction, 50 arm.wrist_position, 51 arm.elbow_position)) 52 53 # Get fingers 54 for finger in hand.fingers: 55 56 print (" %s finger, id: %d, length: %fmm, width: %fmm" % ( 57 self.finger_names[finger.type], 58 finger.id, 59 finger.length, 60 finger.width)) 61 62 # Get bones 63 for b in range(0, 4): 64 bone = finger.bone(b) 65 print (" Bone: %s, start: %s, end: %s, direction: %s" % ( 66 self.bone_names[bone.type], 67 bone.prev_joint, 68 bone.next_joint, 69 bone.direction)) 70 71 if not frame.hands.is_empty: 72 print ("") 73 74def main(): 75 # Create a sample listener and controller 76 listener = SampleListener() 77 controller = Leap.Controller() 78 79 # Have the sample listener receive events from the controller 80 controller.add_listener(listener) 81 82 # Keep this process running until Enter is pressed 83 print ("Press Enter to quit...") 84 try: 85 sys.stdin.readline() 86 except KeyboardInterrupt: 87 pass 88 finally: 89 # Remove the sample listener when done 90 controller.remove_listener(listener) 91 92 93if __name__ == "__main__": 94 main()
エラーメッセージ
python
1Traceback (most recent call last): 2 File "Sample.py", line 9 ,in <module> 3 import Leap, sys, thread, time 4 5 File "C\Users(名前)\Leap\LeapSDK\Leap.py", line 28, in <module> 6 LeapPython = swing_import_helper() 7 8 File "C\Users(名前)\Leap\LeapSDK\Leap.py", line 24, in swing_import_helper 9 _mod = imp.load_module('LeapPython',fp,pathname,description) 10 11 File "C\Users(名前)\anaconda3\lib\imp.py", line 242, in load_module 12 return load_dynamic(name,filename,file) 13 14 File "C\Users(名前)\anaconda3\lib\imp.py", line 342, in load_dynamic 15 return _load(spec) 16 17ImportError:DLL load failed: 指定されたモジュールが見つかりません。
あなたの回答
tips
プレビュー