質問をすることでしか得られない、回答やアドバイスがある。

15分調べてもわからないことは、質問しよう!

新規登録して質問してみよう
ただいま回答率
85.48%
Leap Motion

Leap Motionは、Leap Motionによって開発、販売している、手のジェスチャーでパソコンを操作できるデバイスです。

Python

Pythonは、コードの読みやすさが特徴的なプログラミング言語の1つです。 強い型付け、動的型付けに対応しており、後方互換性がないバージョン2系とバージョン3系が使用されています。 商用製品の開発にも無料で使用でき、OSだけでなく仮想環境にも対応。Unicodeによる文字列操作をサポートしているため、日本語処理も標準で可能です。

Q&A

0回答

1399閲覧

エラー:モジュールが見つかりません

huton

総合スコア30

Leap Motion

Leap Motionは、Leap Motionによって開発、販売している、手のジェスチャーでパソコンを操作できるデバイスです。

Python

Pythonは、コードの読みやすさが特徴的なプログラミング言語の1つです。 強い型付け、動的型付けに対応しており、後方互換性がないバージョン2系とバージョン3系が使用されています。 商用製品の開発にも無料で使用でき、OSだけでなく仮想環境にも対応。Unicodeによる文字列操作をサポートしているため、日本語処理も標準で可能です。

0グッド

0クリップ

投稿2020/10/18 06:29

質問内容

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: 指定されたモジュールが見つかりません。

気になる質問をクリップする

クリップした質問は、後からいつでもMYページで確認できます。

またクリップした質問に回答があった際、通知やメールを受け取ることができます。

バッドをするには、ログインかつ

こちらの条件を満たす必要があります。

meg_

2020/10/18 06:37

Pythonのバージョンは何ですか?
huton

2020/10/18 06:51

Python 3.7.6です。
huton

2020/10/18 14:28

見落としていましたありがとうございます!python2と3のどちらがいいとかはないのでpython2でやってみようと思います!
guest

あなたの回答

tips

太字

斜体

打ち消し線

見出し

引用テキストの挿入

コードの挿入

リンクの挿入

リストの挿入

番号リストの挿入

表の挿入

水平線の挿入

プレビュー

まだ回答がついていません

会員登録して回答してみよう

アカウントをお持ちの方は

15分調べてもわからないことは
teratailで質問しよう!

ただいまの回答率
85.48%

質問をまとめることで
思考を整理して素早く解決

テンプレート機能で
簡単に質問をまとめる

質問する

関連した質問