Kinect Toolbox is a set of useful tools for developing with Kinect for Windows SDK. It includes helpers for gestures, postures, replay and drawing.
Questions tagged [kinect.toolbox]
57 questions
0
votes
0 answers
Generate 3D model of a building with kinect sensor?
I want to generate a 3D model as I walk alone in a building or in a room with the kinect sensor. I want know is this possible?
my idea is to get 3d imaging from interval(like 1 image per 3 meters) and combine them, but how can I do that, how can I…

user2102013
- 29
- 11
0
votes
1 answer
Trouble starting up with kinect toolbox recorder
I am starting up with the kinect for the first time along with the kinect.toolbox. I was trying to use the kinect.toolbox recorder along with the color basics wpf c# provided with the microsoft developer toolkit for the kinect sdk v1.8. However,…

ivan
- 665
- 3
- 8
- 23
0
votes
1 answer
Can't get the Speech Recognizer and a KinectRegion to work together
The Kinect SDK 1.8 has a menu demo with a tile list that uses the KinectSensorChooser and a KinectRegion and it works great, the SDK also have a speech recognition sample but it uses a KinectSensor object directly, no sensor chooser.
I wanted to…

paul-2011
- 675
- 10
- 27
0
votes
1 answer
SkeletonFrameReady event handler of KinectReplay class not executing
I'm following code from the kinect toolkit to record and replay frames, I know the issue is that it never recognizes a new replay_SkeletonFrameReady and thus I can't draw my recorded skeleton. Note that there is indeed data in the file which I read…

EJ_Westhuizen
- 13
- 3
0
votes
2 answers
saving kinect reconstructed 3d view into a file
I'm going to run a project; to reconstruct my room with kinect.
In what format the 3d reconstructed view will be saved ?
could it be save or convert to 3dm, 3ds, max, obj and etc ?
thanks!

prgbenz
- 1,129
- 4
- 13
- 27
0
votes
1 answer
Create button on Main Window and save stream to file
I have a function to have a Record button
protected void StartRecord(object sender, RoutedEventArgs e)
{
MessageBox.Show("Start Recording");
//string generatedName = Guid.NewGuid().ToString();
string generatedName =…

user1773489
- 45
- 10
0
votes
1 answer
Initializing Kinect Recorder error
When I attempt to run my skeletal tracking code to test out the following line of code I have added in, it crashes with an error.
void sensor_AllFramesReady(object sender, AllFramesReadyEventArgs e)
{
if (closing)
{
…

user1773489
- 45
- 10
0
votes
1 answer
Kinect toolbox and magnetic controlls when navigating between pages
I am using Kinect.Toolbox mouse and magnetic controls. It works perfectly fine in a single page. However, when I have different pages which I navigate between them I get an error: InvalidOperationException Unhandeled in user code - The specified…

mahsa.teimourikia
- 1,664
- 9
- 32
- 64
-1
votes
1 answer
How should i run sample code from github for kinect
I have downloaded a source code from GitHub for kinect but I don't understand how to install and run it. Please help me, I am a beginner with kinect and what reference could I use for kinect?
Thank you!
Here is the code:

sekhar mutukuri
- 11
- 3
-1
votes
1 answer
connecting 2 Kinect sensors to my notebook
I am trying to connect 2 kinect sensors to my notebook. I know that I have to have at least 2 separate USB 2.0 controllers. According to tis website: LINK I have the same settings as in the picture. So I think that connecting 2 kinect sensors should…

user2179427
- 331
- 5
- 16
-1
votes
1 answer
Recorded Skeleton Data
The following is code I have used to try to record skeleton frame data
using (SkeletonFrame skeletonFrame = e.OpenSkeletonFrame())
{
if (skeletonFrame == null)
return;
this.Recorder.Record(skeletonFrame);
}
if the code above is run,…

user1773489
- 45
- 10
-2
votes
1 answer
Detecting hand movement with kinect?
How can i detect that I am moving my hand, and that I stop moving it.
I want to to that, becuase I want to save the data of my left hand, just when i move to do gesture recognition