Questions tagged [kinect]

Microsoft's Kinect is a motion sensing input device for the Xbox 360, Xbox One and PCs. Combining video and depth cameras, the Kinect allows developers to create a touchless and immersive user experience through voice, movement and gesture control.

Microsoft's Kinect is a motion sensing input device for the Xbox 360, Xbox One and PCs. Originally developed for use with the Xbox 360 the Kinect has been opened up for use with Windows PCs by Microsoft's official , and for additional platforms though OpenKinect's SDK. Using a combination of video and depth cameras, as well as a microphone array, the Kinect hardware provides developers the means for creating a touchless and immersive user experience through voice, movement and gesture control.

The Kinect hardware does not inherently perform any tracking or recognition operations, leaving all such processing to software. Skeleton tracking is generally handled by the SDK (as with Microsoft Kinect for Windows SDK and the OpenKinect SDK) with gesture recognition left to the developer, though multiple libraries exist to aid in recognition of gestures. In addition, speech recognition is performed by external SDKs such as the Microsoft Speech Platform.

Resources

Related tags

2721 questions
22
votes
2 answers

Projection Mapping with Kinect and OpenGL

Im currently using a JavaCV software called procamcalib to calibrate a Kinect-Projector setup, which has the Kinect RGB Camera as origin. This setup consists solely of a Kinect RGB Camera (Im roughly using the Kinect just as an ordinary camera at…
Trmotta
  • 385
  • 4
  • 13
21
votes
2 answers

Find chest size using Kinect v2

I need to find out the front measure of chest for any individual using Kinect while facing the camera. My current solution is: When a MultiFrameSource arrives get the color (to display the body in the ui) body (to get the Joints), and bodyIndex…
Alberto Godar
  • 249
  • 1
  • 7
20
votes
7 answers

Kinect in HTML5

Kinect for Windows has been just released on the 1st of February. Is there any good way to make it work with HTML5 games? Perhaps even somehow with the upcoming GamePad API...? Looking for ideas here, especially any with minimum extra installation…
AshleysBrain
  • 22,335
  • 15
  • 88
  • 124
19
votes
5 answers

Kinect SDK: align depth and color frames

I'm working with Kinect sensor and I'm trying to align depth and color frames so that I can save them as images which "fit" into each other. I've spent a lot of time going through msdn forums and modest documentation of Kinect SDK and I'm getting…
jaho
  • 4,852
  • 6
  • 40
  • 66
19
votes
1 answer

Fastest Speech recognition library C++

I know its a general question topic, but still i want to know whats the fastest speech recognition library in C++? Currently I am using Microsoft SAPI with kniect. It works fine and recognizes words but its abit slow, some times it takes 1,2 seconds…
Fahad Rauf
  • 705
  • 2
  • 8
  • 17
18
votes
2 answers

Looking for a Kinect tutorial

Does anyone have a good tutorial or information how can I start programming C# application using Kinect? I have been searching and all I find are videos but no real articles.
wandos
  • 1,581
  • 2
  • 20
  • 39
16
votes
2 answers

Can't set frame width and height with [OpenCV] cv2.VideoCapture.set()

I am trying to reduce the frame/window size of my video capture to 320x180 but I can't seem to do it. I am using a Windows Kinect for Xbox One and its connected to my pc using an adapter. I have tried setting the cv2.CAP_PROP_FRAME_WIDTH to 320 and…
blinkThrice
  • 305
  • 1
  • 2
  • 9
16
votes
10 answers

Implicitly convertible to 'System.IDisposable' error

This is what I'm trying to do: private KinectAudioSource CreateAudioSource() { var source = KinectSensor.KinectSensors[0].AudioSource; source.NoiseSuppression = _isNoiseSuppressionOn; source.AutomaticGainControlEnabled =…
CodeKinect
  • 189
  • 1
  • 1
  • 6
15
votes
1 answer

Microsoft Kinect SDK depth data to real world coordinates

I'm using the Microsoft Kinect SDK to get the depth and color information from a Kinect and then convert that information into a point cloud. I need the depth information to be in real world coordinates with the centre of the camera as the…
Simon Trewhella
  • 2,124
  • 3
  • 23
  • 23
15
votes
3 answers

Extract projective homography from two Kinect depth maps

Given two consecutive 3D point clouds 1 and 2 (not the whole cloud, say 100 points selected from the cloud with OpenCV's GoodFeaturesToMatch), obtained from a Kinect depthmap, I want to compute camera's homography from 1 to 2. I understand that this…
smirkingman
  • 6,167
  • 4
  • 34
  • 47
15
votes
1 answer

OpenNI UserTracker.java sample crashes

I've built OpenNI and Sensor from source on Github and installed Nite. I've tested this on Debian with 2.6.39 kernel and with different versions of Java, and on another computer with Lubuntu 11.04 and also with OpenNI unstable and avin2 Sensor -…
HairyFotr
  • 1,453
  • 1
  • 15
  • 28
15
votes
2 answers

Any way of getting Kinect V2 tracking data with javascript?

My question is: How to get Kinect for Windows V2 tracking data to Javascript for HTML5 games or other browser hacks. I used the Zigfu browser plugin with my old Kinect to work with Javascript in the browser and that worked on my Macintosh too. I…
user2404804
  • 523
  • 3
  • 12
14
votes
4 answers

Requirements for Kinect programming

I wish to program with the Kinect ToF camera, however I am not certain of the hardware and software requirements to do so. I have come across a number of articles/books that cover this topic, but there seems to be some inconsistencies that have left…
Josh
  • 1,357
  • 2
  • 23
  • 45
14
votes
1 answer

How to detect gestures in OpenKinect (with python wrappers)

I've started looking into OpenKinect development, and to start, I'm trying to figure out how to look for certain gestures done by the person. Are there any tutorials out there on how to do this? Or what would be a good place to start? I'm just…
Parker
  • 8,539
  • 10
  • 69
  • 98
14
votes
1 answer

Vectorizing the Kinect real-world coordinate processing algorithm for speed

I recently started working with the Kinect V2 on Linux with pylibfreenect2. When I first was able to show the depth frame data in a scatter plot I was disappointed to see that none of the depth pixels seemed to be in the correct location. Side view…
Logic1
  • 1,806
  • 3
  • 26
  • 43