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

imwrite 16 bit png depth image

I have the following code. I am trying to save a 16 bit depth image which I retrieve from Kinect v1 as a png file. I wrote the following code sample: def display_depth(dev, data, timestamp): global keep_runningp cv2.imshow('Depth',…
MIRMIX
  • 1,052
  • 2
  • 14
  • 40
11
votes
2 answers

OpenCV (C++): how to save a 16bit image?

I'm working with kinect, and I need to save RAW depth image. This means that I shouldn't save it with a conversion to 8 bit (that is what imwrite is doing!) but save it as 16 bit, without have any bit-depth reducing. I hope that this question will…
Andrea
  • 4,262
  • 4
  • 37
  • 56
10
votes
5 answers

3d model construction using multiple images from multiple points (kinect)

is it possible to construct a 3d model of a still object if various images along with depth data was gathered from various angles, what I was thinking was have a sort of a circular conveyor belt where a kinect would be placed and the conveyor belt…
10
votes
1 answer

How to detect the line of sight of a person using kinect?

Currently I am working on a project using Kinect which requires me to know the where the person is looking at that time, for which I figured out I need to find the line of sight of that person. Right now, I can find the head point of the skeleton of…
Vipul Jain
  • 386
  • 3
  • 14
10
votes
1 answer

Kinect for Windows (v1) with SDK 2.0

I have issues installing Kinect for Windows (the V1 version) using the SDK 2.0. I'm assuming the SDK 2.0 also include drivers necessary for v1 since the download details says introduces support for the Kinect for Windows v2 sensor. The issue I'm…
Christopher Francisco
  • 15,672
  • 28
  • 94
  • 206
10
votes
1 answer

Custom mouse cursor size in WPF

We are developing an application that must be used by people that may have some visual problem involving the use of kinect to move the cursor, so we need to make it bigger than usual. However, this application does not interfaces directly with…
breathe0
  • 573
  • 1
  • 7
  • 21
10
votes
3 answers

How can I access the Kinect using Java?

I am currently in a Computer Vision course and for my final project I am going to make a small game that interacts with the Kinect. Now I want to make this game in Java as I have never really ventured into making a game before and I am very…
Alex
  • 2,405
  • 4
  • 23
  • 36
10
votes
2 answers

Comparing a saved movement with other movement with Kinect

I need to develop an application where a user (physiotherapist) will perform a movement in front of the Kinect, I'll write the data movement in the database and then the patient will try to imitate this motion. The system will calculate the…
Ewerton
  • 4,046
  • 4
  • 30
  • 56
10
votes
3 answers

Facial Recognition with Kinect

Lately I have been working on trying facial recognition with the Kinect, using the new Developer Toolkit (v1.5.1). The API for the FaceTracking tools can be found here: http://msdn.microsoft.com/en-us/library/jj130970.aspx. Basically what I have…
Ray
  • 325
  • 4
  • 15
10
votes
2 answers

How to get real world coordinates (x, y, z) from a distinct object using a Kinect

I have to get the real world coordinates (x, y, z) using Kinect. Actually, I want the x, y, z distance (in meters) from Kinect. I have to get these coordinates from a unique object (e.g. a little yellow box) in the scenario, colored in a distinct…
eberz
  • 103
  • 1
  • 1
  • 6
10
votes
4 answers

Microsoft Speech Recognition - what reference do I have to add?

I'm trying to make a C# program that uses the Microsoft Speech Recognition API (with Kinect) but I'm struggling to get started. I have the using statements using Microsoft.Speech.AudioFormat; using Microsoft.Speech.Recognition; But it's giving me…
user1002973
  • 2,088
  • 6
  • 22
  • 31
9
votes
1 answer

Pause Kinect Camera - Possible error in SDK reguarding event handler

I'm in the process of converting my Microsoft SDK Beta code to the Microsoft SDK Official Release that was released February 2012. I added a generic PauseKinect() to pause the Kinect. My pause will really only remove the event handler that updated…
MyKuLLSKI
  • 5,285
  • 3
  • 20
  • 39
9
votes
1 answer

How to track ONE person with Kinect (trackingID)

I would like to track the first person, and use this person's right hand to navigate in the application that I made. I can take over the cursor, now I just want only one person being tracked. So basically when one person is navigating in the…
Letoir
  • 395
  • 7
  • 15
9
votes
1 answer

Working with depth data - Kinect

I just started learning about Kinect through some quick start videos and was trying out the code to work with depth data. However, I am not able to understand how the distance is being calculated using bit-shifting and various other formulas that…
Cipher
  • 5,894
  • 22
  • 76
  • 112
9
votes
2 answers

Background removal using Kinect: noise suppression around body shape

The objective is to display the person on a different background (aka background removal). I'm using the Kinect with Microsoft's Beta Kinect SDK to do so. With help of the depth, the background is filtered and we get only the image of the…
wormsparty
  • 2,481
  • 19
  • 31