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

Get coordinates of head in Kinect

i am making an App in Open GL (C++) with Kinect. I want to get the coordinates of head (Skeleton). I saw the function: void CSkeletalViewerApp::Nui_DrawSkeletonSegment( NUI_SKELETON_DATA * pSkel, int numJoints, ... ) , but I dont know how to use it…
user1391118
  • 265
  • 2
  • 4
  • 12
1
vote
1 answer

Kinect, Warning: An ImageFrame instance was not Disposed

I am new to Kinect. i am trying to use skeleton tracking but i kept receiving this warning "Warning: An ImageFrame instance was not Disposed.". Do you know any solution for that ? Here is my code using System; using System.Collections.Generic; using…
Michael Girgis
  • 145
  • 4
  • 14
1
vote
1 answer

Kinect Body Color

I am writing an application that requires the background removal(where the player is), and masking the user body with some color or any character(like https://stackoverflow.com/questions/10599658/how-to-create-kinect-avatar). Thanks in advance
ravithejag
  • 588
  • 11
  • 23
1
vote
1 answer

NullReferenceException on OpenSkeletonFrame

Hello, I get a NullReferenceException when running this: void newSensor_AllFramesReady(object sender, AllFramesReadyEventArgs e) { Skeleton first = GetFirstSkeleton(e); if (first == null) { return; } …
Fixus
  • 4,631
  • 10
  • 38
  • 67
1
vote
3 answers

C# and Kinect gesture time

I am currently developing some gesture recognition in C# with Kinect SDK.So far so good, the only problem being that the gesture recognition is instant. For example: i am using a messageBox to announce when i raise my hand above my head.And if i…
Dorin Rusu
  • 1,095
  • 2
  • 13
  • 26
1
vote
2 answers

Kinect Skeletal Tracking Not Working

So currently I have a bool PersonDetected which is always set to false UNLESS a Skeleton is detected. But currently when a SkeletonTrackingState is marked as Tracked, but PersonDetected is still set to false. Thanks in advanceMy Code Skeleton…
Liam McInroy
  • 4,339
  • 5
  • 32
  • 53
1
vote
1 answer

Why do I have to reinstall Kinect SDK everytime I restart PC

I'm currently work with Kinect for Windows SDK version 1 under Win7, VS2010, C#.NET. Demos in Microsoft Kinect for Windows SDK Sample Browser can't run properly after Kinect is connected to my PC. Kinect Explorer(in C#) says Kinect is not ready…
Ovilia
  • 7,066
  • 12
  • 47
  • 70
1
vote
1 answer

Converting Kinect Methods from Beta 2, to Version 1

So I have convert the getDisplayPosition from the beta version of the Kinect SDK to the full version. Here's what I have right nowThe Original private Point getDisplayPosition(Joint joint) { float depthX, depthY; …
Liam McInroy
  • 4,339
  • 5
  • 32
  • 53
1
vote
0 answers

OpenNI Zigfu - One or more of the following nodes could not be enumerated:

I wanted to try the Zigfu OpenNI approach for my projects so I installed the following drivers. openni-win32-1.5.2.23-dev SensorKinect091-Bin-Win32-v5.1.0.25 nite-win32-1.5.2.21-dev The samples NISimpleViewer and NIUserTracker are working well,…
Caloyskie
  • 229
  • 5
  • 14
1
vote
1 answer

Is there a simplistic method of getting kinect sensor to recognise swipes

I'm not the best programmer and I'm trying to adapt the skeletal tracking project available from channel 9 but I have no idea how to do so. I've also looked at kinect toolbox but it seems overly complicated. I'm trying to create an application that…
AisRuss
  • 259
  • 4
  • 8
  • 16
1
vote
1 answer

InstalledRecognizers() doesn't run

I'm trying to integrate Microsoft Speech Platform with Kinect and I've come across with the method: SpeechRecognitionEngine.InstalledRecognizers(), which doesn't run at all. When I call the method from my class the execution doesn't continue. I'm…
Jonás
  • 1,459
  • 4
  • 27
  • 43
1
vote
1 answer

WPF + Kinect application

I want to do an WPF application with Kinect. The idea is pretty simple. An app that show some images, and I will pass to the next image with the gesture that will be catched by the kinect for windows. I saw a lot of books on internet, some codes,…
Lucas_Santos
  • 4,638
  • 17
  • 71
  • 118
0
votes
1 answer

Kinect Format for ColorImageFrame

I've set the kinects ColorImageFormat to RgbResolution640x480Fps30, yet the total amount of bytes reported is width * height * channels(?) = 1228800 bytes. Wouldn't the length normally be of 921600 bytes which would be 3 channels for each value of…
Patrick.SE
  • 4,444
  • 5
  • 34
  • 44
0
votes
1 answer

How to share a variable in MEF

I have a master project that load many plugins (dll files) in a directory. I would like to share a variable, who is the Kinect declaration, with all the plugins. I want to do that because, the master class use the Kinect but I need it also in my…
Arnaud Bessems
  • 515
  • 5
  • 21
0
votes
1 answer

Can I use the Kinect Windows Live Messenger on a PC?

Can I use the Kinect Windows Live Messenger on a PC? I heard rumor that it worked and it would focus on the person talking. If this is the wrong place to ask this which "StackExchange" should I use?
Jamey McElveen
  • 18,135
  • 25
  • 89
  • 129
1 2 3
99
100