4

我试过用谷歌搜索这个,但这是很多我不一定完全理解的编程谈话。到目前为止,我所做的只是下载了 Leap Motion 的 SDK,发现可以用 python 编写程序。这是我有点熟悉的编程语言。

从 SDK 上的示例来看,它似乎需要一个模块才能开始编写,这意味着每个跳跃运动应用程序都以 python 中的“import Leap”开头。但是我没有这个“Leap”模块,我不知道在哪里下载它。

几乎我希望能够四处玩耍并创建一些可以做一些简单事情的基本应用程序,但我不太确定我实际上需要如何编写跳跃运动程序以及如何将它变成可以使用 Leap Motion 设备打开和控制的应用程序。

4

2 回答 2

7

首先,这里是 Leap Motion Python 文档概述: https ://developer.leapmotion.com/documentation/Languages/Python/Guides/Leap_Overview.html

你可以在 LeapSDK/lib/ 目录中找到 Leap.py。查看以下链接以获取有关 Leap Motion SDK 文件结构的信息: https ://developer.leapmotion.com/documentation/Languages/Python/Guides/Sample_Python_Tutorial.html

最后,您可以在此处找到 Leap Motion API 文档:http: //developer.leapmotion.com/documentation/Languages/Python/API/index.html

更新:自从我最初写这篇回复以来,Leap Motion 已经改变了他们的文档位置和结构。以上链接不再有效。

由于我也不再在 Leap Motion 的平台上进行开发,因此我不熟悉他们目前设置的各种 API,因此我将避免做出任何假设,并简单地留下文档索引的链接:

https://developer.leapmotion.com/documentation/index.html?proglang=current

于 2013-07-28T20:23:38.867 回答
1

文档中有运行示例的说明:

https://developer.leapmotion.com/documentation/python/devguide/Sample_Tutorial.html#id26

这解释了依赖关系。

于 2014-03-05T06:47:29.570 回答