Hello, Recently i tried to integrate Kinect sensor in Unity using the KinectWrapperPackage which is using the Windows Drivers instead of OpenNI drivers.
I would like to learn how to display the depth and color camera inside my game window
Thanks
Hello, Recently i tried to integrate Kinect sensor in Unity using the KinectWrapperPackage which is using the Windows Drivers instead of OpenNI drivers.
I would like to learn how to display the depth and color camera inside my game window
Thanks
Just Attach depth or color display scripts to an object such as a cube
DisplayDepth - This script will get the depth image. Attach it to a game object with renderer. NOTE: In unity, you need to restart unity everytime after running your world, otherwise this script will not work (because of SDK issue).
DisplayColor - This script will get the RGB image. Attach it to a game object with renderer. NOTE: In unity, you need to restart unity everytime after running your world, otherwise this script will not work (because of SDK issue).
I tried but the result is a grey cube… no image…
Where is the error?
Thanks