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
9
votes
1 answer

Problems when compiling the Open Kinect drivers for Python on Windows

I'm trying to compile the Open Kinect drivers for Python on Windows I made a Make file with CMake (link) and tried compiling it with VC++ Express. Everything seems to compile alright (the viewer sample works), except for the Python wrapper. I…
Ivo Flipse
  • 10,222
  • 18
  • 50
  • 63
9
votes
5 answers

Kinect and Opencv, the depth image, how to use it

I've using Kinect and OpenCV (I am using c++). I can get both the RGB and the depth image. With the RGB image I can "play" as usual, blurring it, using canny (after converting it to greyscale),... but I can't do the same with the depth image. Each…
Dr Sokoban
  • 1,638
  • 4
  • 20
  • 34
9
votes
2 answers

Is it possible to run Kinect V2 inside a Docker container?

I'm exploring the feasibility of running a C# Kinect Visual Gesture Program (something like Continuous Gesture Basics project https://github.com/angelaHillier/ContinuousGestureBasics-WPF) inside of a Docker for Windows container. Is this even…
Victor
  • 868
  • 1
  • 9
  • 24
9
votes
1 answer

Size of BoundingBox/ROI to track object keeps on increasing despite fixed initial size

I am trying to track my hand based on the area using Media Flow Tracker but the bounding box keeps increasing after some time. It works properly for the first 10 seconds or so. Here's a code snippet: def main(): display = SimpleCV.Display() cam =…
Rahat Mahbub
  • 2,967
  • 17
  • 29
9
votes
1 answer

How to track eyes using Kinect SDK?

The requirement is to define a rectangle around each eye in 3D space. There should be a way to track eyes using the Microsoft Kinect SDK. According to this The Face Tracking SDK uses the Kinect coordinate system to output its 3D tracking…
jacknad
  • 13,483
  • 40
  • 124
  • 194
9
votes
2 answers

How to map kinect skeleton data to a model?

I have set up a Kinect device and written a simple program that reads the stream to a QImage using OpenNI 2.0. I have set up skeleton tracking with NiTE 2.0, so I have access to the coordinates of all the 15 joints. I have also set up a simple scene…
Mr Brown
  • 325
  • 6
  • 16
9
votes
2 answers

How to setup OpenNI 2.0 with OpenCV for a Kinect project?

I am working on my final year project. I need to work with Kinect to detect hand movements. I have tried a few ways and got some results, however, none was enough to meet the needs of the project. I saw this video long ago, and just got to know that…
tnq177
  • 583
  • 1
  • 8
  • 19
9
votes
3 answers

How to take kinect video image and depth image with openCV c++?

I'm new about opencv(c++) and kinect. I try to take a video image with c++ from kinect. I search everywhere but I didn't find anything. Because people are made using openNI or OpenKinect. I don't want to use this lib. How can I do it?? Thanks!!!
Mehmet Zaim
  • 95
  • 1
  • 1
  • 5
9
votes
2 answers

To calculate world coordinates from screen coordinates with OpenCV

I have calculated the intrinsic and extrinsic parameters of the camera with OpenCV. Now, I want to calculate world coordinates (x,y,z) from screen coordinates (u,v). How I do this? N.B. as I use the kinect, I already know the z coordinate. Any help…
Paul
  • 167
  • 1
  • 2
  • 11
9
votes
1 answer

Calculate BPM from Kinect sensor data

I am struggeling with the Kinect for Windows SDK to create an application for conducting (with C#). Basically I need to track one hand (usually the right one) of a conductor and recognize his speed in directing (BPM) to send this value to another…
fdomig
  • 4,417
  • 3
  • 26
  • 39
9
votes
1 answer

Convert Kinect ColorImageFrame to Bitmap

I´m using Kinect (Microsoft SDK) with XNA. I want to use GRATF for marker-recognition How to convert the data of a Kinect ColorImageFrame to a System.Drawing.Bitmap or AForge.Imaging.UnmanagedImage that I can process them with GRATF? void…
0xDEADBEEF
  • 3,401
  • 8
  • 37
  • 66
9
votes
2 answers

Kinect Depth and Image Frames Alignment

I am playing around with new Kinect SDK v1.0.3.190. (other related questions in stackoverflow are on previous sdk of kinect) I get depth and color streams from Kinect. As the depth and RGB streams are captured with different sensors there is a…
hevi
  • 2,432
  • 1
  • 32
  • 51
8
votes
4 answers

Kinect for Windows gesture recognition

I have been looking at the Kinect for Windows release notes and features, since I want to incorporate gesture recognition in my project as well. At the above page, the first line mentions that "The Kinect for Windows SDK enables developers to create…
user1240679
  • 6,829
  • 17
  • 60
  • 89
8
votes
1 answer

Kinect SDK for finger detection?

I'm a student from Nanyang Technological University (NTU), Singapore. And currently developing a project using Kinect SDK. And my question is, anyone know how to develop a program to detect a finger (or fingertip) using Kinect SDK, or maybe even…
Jinsh0
  • 81
  • 1
  • 2
8
votes
3 answers

Attempting to Simulate Mouse Click / Drag

So I'm trying to simulate the left mouse click and the left mouse release to do some automated dragging and dropping. It's currently in a C# Winforms (Yes, winforms :|) and is being a bit of a goose. Basically, once a Click is sent, I want it to…
Lucas
  • 643
  • 1
  • 9
  • 21