我想用Kinect ToF摄像头编程,但是我不确定硬件和软件的要求。我遇到过许多涉及这个主题的文章/书籍,但似乎有一些不一致之处,使我有些困惑。
问题
请注意,我不想被锁在Windows环境中进行开发,尽管我希望这样做。我现在也不打算开发商业应用程序。
发布于 2012-03-04 22:34:09
驱动程序/库:
如果您已经习惯了创造性的编码环境,那么它们中的大多数都有包装器:
根据您需要使用的OS/语言和Kinect特性,您应该能够做出选择。
还请注意,如果您可以使用OpenNI与其他深度相机,如华硕。
发布于 2012-10-25 10:49:53
- Windows 7, Windows 8, Windows Embedded Standard 7, or Windows Embedded POSReady 7.
- 32 bit (x86) or 64 bit (x64) processor
- Dual-core 2.66-GHz or faster processor
- Dedicated USB 2.0 bus
- 2 GB RAM我不熟悉其他平台,但我认为硬件需求大致相同。
- If you are want to develop Kinect application on Windows platform,I strongest suggest you use the newest Kinect SDKs for Windows 1.6.It has a plent of documentary and Demo int the [DevelopToolKit](http://openni.org/) ,and have [Kinect Studio](http://openni.org/) helps you to debug during application.The [Channel9](http://channel9.msdn.com/coding4fun/kinect) website has a special block on Kinect development which has a lot of examples and ideas about Kinect development. Kinect SDKs for Windows 1.6 support the Windows 7/Windows 8 OS. The only drawback is that Kinect SDK only support Windows platform. But from the SDK 1.6,it supprot the windows runing on virtual machine such as Microsoft HyperV,VMWare and Parallels.
- If you want to develop on other platform ,[OpenNI](http://openni.org/) maybe the best choice.
发布于 2013-09-22 20:47:28
根据我在基于ARM的Linux环境下的实验,720 MHz+单核处理器就足以对数据进行连续轮询并读取其属性。至少需要1.5个GHz CPU才能将深度数据采集到内存中并进行基本处理。我使用双核OMAP-4核心(1.2 GHz每个)。实际上,这种处理能力足以让我获取深度+图像数据,对它们进行下采样/压缩(与损失),并通过TCP/UDP发送它们。
Kinect有各种各样的库。most和OpenNI是最常见的。如果您要使用Linux环境,我建议使用OpenNI。
我为这个装置准备了一个指南。您可以在http://denizbeker.blogspot.com/2013/08/pandaboard-es-openni-kinect-ubuntu.html查看
https://stackoverflow.com/questions/9559220
复制相似问题