aitzaz ahsan
aitzaz ahsan

Reputation: 19

unity3D + kinect interection

guys i am working on a project which uses unity engien and kinect as input source ..now according to my knowledge there is not much support between unity and kinect sdk ..i have heard about zigfu framework but it is not giving me all functionalities i need..so what are options for me? im thinking to take some functionalities from zigfu and some from a background application build in .net 4.0 and using kinect official sdk ? can i connect to kinect via two interfaces at the same time? i.e zigfu and kinect sdk ....my background app will connect to unity via pipes ..is that agood option?

Upvotes: 0

Views: 2332

Answers (2)

Ratih Nurmalasari
Ratih Nurmalasari

Reputation: 618

I've already done something similar. I'd like to use Unity 3D engine and do some interactions to animate the model using Kinect (Kinect SDK). Some functionality in Kinect SDK are not available in Zigfu, such as Hand Gripping detection.

Because Kinect SDK is suitable for WPF application, here is my solution :

  1. Build your Unity into Unity Standalone (PC, Mac, Linux).
  2. Create WPF application with Kinect stuff inside.
  3. Add WindowsFormsHost inside your XAML of WPF application.
  4. Embed your Unity Standalone into WPF using WindowsFormsHost.
  5. To do a communication between WPF and Unity, you can use Raknet. It will work as socket does.

Upvotes: 1

Alex Moreno
Alex Moreno

Reputation: 138

in my experience, its usually not a good idea to use "two of" something, when they both do the same thing. I've never heard of zigfu before, but it seems relatively easy to learn. Since its available as a unity plug in, it may be best to use that over kinect. The reason being that Unity isn't to "friendly" with third party applications.

If your aiming for XNA, its possible to convert easily if the plug-in doesn't already do it for you.

I Highly recommend looking over the unity forums, and the ZDK documentation. http://forum.unity3d.com/threads/127924-Zigfu-dev-kit-for-Unity3D-Product-Launch

Upvotes: 0

Related Questions