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
1
vote
1 answer

Compare 2 Skeletons in Kinect

Possible Duplicate: Comparing a saved movement with other movement with Kinect I want to create simple game like Dance Central which captures player's skeleton and verifies the accuracy of his gesture. How I can check their skeleton by compare it…
1
vote
0 answers

Shorten Minimum Range for Kinect or Asus

I am planning on using a device such as the Microsoft Kinect or an Asus Xtion Pro for 3D imaging purposes and they are great on all specs except for the minimum range. Is there anyway to make the range shorter, either through software…
clifgray
  • 4,313
  • 11
  • 67
  • 116
1
vote
2 answers

Retrieving depth by using pointer in OpenCV

The following piece of code works well in retrieving depth value at row 240 and col 320. capture.retrieve( rawdepth, CV_CAP_OPENNI_DEPTH_MAP); // Mat rawdepth(Size(640,480), CV_16UC1); cout << "rows: " << rawdepth.rows << " cols: " <<…
ikel
  • 518
  • 2
  • 6
  • 27
1
vote
1 answer

Error when adding microsoft.kinect to XBOX Project

iam trying to develop a new Xbox game using microsoft kinect SDK 1.5 for windows. when i create a new XBOX360 project and add Microsoft.Kinect as a reference->type using Microsoft.Kinect and Build, it gives me an error telling: Warning 1 The…
1
vote
4 answers

Kinect Swipe Up/Down gestures

I have used the SwipeGestureRecognizer where it has only swipe left and swipe right gesture recognization but i want swipe up/down for both the hands how to do it .. Any idea...... SwipeGestureRecognizer is a dll so I am unable to see the logic for…
1
vote
1 answer

3D objects for Kinect application

Currently i am working on kinect Virtual Jewel shop app. In which user can able to choose the jewels and check how it looks . The App started with 2d images where it does not look realistic . so can any one suggest your ideas for the following…
user1307428
  • 87
  • 1
  • 5
1
vote
0 answers

Exception in displaying the depth and Rgb Image through OpenNI in C++

I am new to openNI and Kinect as a beginner I tried implementing OpenNI SimpleViewer through the Tutorial in OpenNI.org at this link : http://openni.org/docs2/Tutorial/smpl_simple_view.html I have implemented the code as described in this tutorial…
user1606191
  • 551
  • 2
  • 6
  • 14
1
vote
1 answer

Measuring distance between 2 points with OpenCV and OpenNI

I'm playing with the built in OpenNI access within OpenCV 2.4.0 and I'm trying to measure the distance between two points in the depth map. I've tried this so far: #include "opencv2/core/core.hpp" #include "opencv2/highgui/highgui.hpp" #include…
George Profenza
  • 50,687
  • 19
  • 144
  • 218
1
vote
1 answer

Kinect sdk v1.5 face tracking by using XNA 4.0 Framework of C#

I am a new kinect developer and going to develop some application related to face tracking by using kinect v1.5 and XNA Framework in c# platform. I can successfully get the face points and rectangle points to display in the screen by using the…
Alan Chan
  • 21
  • 3
1
vote
1 answer

Kinect photo gallery - how to?

I want to create my first kinect application which is will be a grid gallery where the user can click to enlarge and read description. All the data is stored in a xml file. I've never used kinect so I would like some advice on the best way to…
1
vote
1 answer

Kinect SDK crashing on background thread for no apparent reason

The Kinect SDK throws an access violation exception when opening the NuiImageStream. I have checked and all pointers are valid; the exception is thrown not on my thread; but on a background thread being ran by the Kinect SDK. Any ideas? int…
bbosak
  • 5,353
  • 7
  • 42
  • 60
1
vote
1 answer

Kinect wrist/hand joints position changing depending on palm size

I'm creating Kinect mouse aplication. The idea is to hand/wrist kinect joint, as a source for cursor position, and finger detection to perform clicks, holds etc. I got finger detection and palm gesture recognition working and here I found my…
Skiba
  • 440
  • 1
  • 6
  • 17
1
vote
1 answer

Kinect UV Mapping

For a project, I need to get a UV map of a point cloud from the Kinect. Is there some function in the Kinect SDK which allows us to do that? If not, is there another project which includes this functionality? I would prefer not to reinvent the wheel…
Shivam Sarodia
  • 417
  • 1
  • 4
  • 20
1
vote
1 answer

Relationship between GraphicsDevice.Clear's color and the color drawn onto the screen

I am a beginner to XNA and am experimenting with my new kinect for windows so decided to follow a tutorial: http://digitalerr0r.wordpress.com/2011/06/20/kinect-fundamentals-2-basic-programming/ After doing this one I noticed that all the colors are…
Razor Storm
  • 12,167
  • 20
  • 88
  • 148
1
vote
0 answers

Getting the updated position of an Ellipse in C#

I am currently working on a Kinect project for fall detection. I am only doing a basic detection of the head because that's the only way I know how to. Anyway I need to get the updated position of the MousePointer of a Ellipse. I tried using the…
Bocky
  • 483
  • 1
  • 7
  • 27