Questions tagged [kinect.toolbox]

Kinect Toolbox is a set of useful tools for developing with Kinect for Windows SDK. It includes helpers for gestures, postures, replay and drawing.

57 questions
1
vote
0 answers

As with basic zoom controls kinect for windows v1.8

How I can add zoom functionality to the basic controls kinect ie the Microsoft.kinect.toolkit.controls?
1
vote
1 answer

Space represented by a single Kinect pixel at a given depth

Basically I want to take a fixed straight line across the devices point of view and determine if anything intercepts it but in my example I want to make the "laser line" configurable with regards to the distance from the top of the field of…
Maxim Gershkovich
  • 45,951
  • 44
  • 147
  • 243
1
vote
0 answers

Kinect.Toolbox custom TemplatedGestureDetector initialisation

I'm working on an application to control various systems using a Kinect, and I'm having trouble setting up custom gestures. I'm using the Kinect Toolbox library, and I've run into a chicken-and-egg problem with the TemplatedGestureDetector. What I…
anaximander
  • 7,083
  • 3
  • 44
  • 62
1
vote
1 answer

How ro reuse .xed file recorded by kinect studio in another application

I have several .xed files recorded by Kinect Studio. I have to use them to test my application. Do you have any idea how to do that? I didn't recorded these files using my application, but I need to check gestures used in them with my own gesture…
Patrick
  • 11
  • 6
1
vote
1 answer

Changing the avatar in Avateering sample (Kinect Developer Toolkit v1.7.0)

I've been trying to make a virtual dressing room, but am not able to change the avatar of the Avateering sample. I even tried with minor changes in the mesh of the Avatar in Autodesk Maya, but couldn't go through. When I run the code with this new…
1
vote
1 answer

measuring the distance from a point to another in meshlab for slam kinect data

I'm going to use openslam to reconstruct my room. The reconstructed data will be save in PLY or PCD format and view by meshlab. meshlab has a measuring tool for measuring the distance from one point to another. My question is will the measuring…
prgbenz
  • 1,129
  • 4
  • 13
  • 27
1
vote
1 answer

Kinect toolbox detecting new shapes

Problem So i am using kinect toolbox (source:http://kinecttoolbox.codeplex.com/) and want to detect other shapes than circle. But i can't find a way how to make a 'CircleKB.save' type file (which is used by this toolbox) for any other shape as i…
MunchY
  • 11
  • 2
1
vote
0 answers

Upward/Downward Swipe

I am trying to detect upward and downward swipes using the same logic used for Right and Left swipe. Thats what I came up with. // Upward Swipe if (ScanPositions((p1, p2) => Math.Abs(p2.Y - p1.Y) > 0.4f, // Height (p1, p2) =>…
1
vote
1 answer

How to make a copy of an Kinect Skeleton object to another Kinect Skeleton object

I am using the Kinect Toolbox, so I have a list of ReplaySkeletonFrames in my hand. I am iterating over this list, getting the first tracked skeleton and modifying some properties. As we know, when we change an object we also change the original…
Ewerton
  • 4,046
  • 4
  • 30
  • 56
1
vote
1 answer

How to detect the end of replay in Kinect Toolbox

I am using Kinect.Toolbox in my project, i need to show a message after the replay ends. Is there a way to get this moment? actualy my code do the following Stream recordStream = File.OpenRead(@"D:\recorded.FisioKinect"); this.Replay = new…
Ewerton
  • 4,046
  • 4
  • 30
  • 56
1
vote
0 answers

How to convert Kinect.Toolbox.ReplayColorImageFrame to Kinect.ColorImageFrame

I do some little modifications on KinectColorViewer of the KinectSamples provided with Kinect SDK. On the KinectColorViewer i create a method that simply render a ColorImageFrame on the Image element of the viewer, my method is something like this …
Ewerton
  • 4,046
  • 4
  • 30
  • 56
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…
0
votes
1 answer

Kinect V1, setting up environment

I never tried working on a kinect before, and the kinect I have is the first version that was for the Xbox 360. So most of the resources online on how to even start keep giving me errors, so if you have any resource or just tell me how to set up the…
0
votes
1 answer

Kinect V2 - Loading XEF files recorded in Kinect Studio, accessing the Color and Depth frames

I need to get the Color and Depth frames from an XEF file recorded using Kinect Studio. My code for accessing the Color and Depth frames when using the Kinect directly looks like this: _sensor = KinectSensor.GetDefault(); if…
0
votes
1 answer

How to Track Non Skeletal Point Or Extend the Sketetal Tracking Framework to Add Addition Joints

Say for example if you wanted to track a tennis ball or extend the Skeletal Tracking Framework. How would you achieve this ?
Shivam Sinha
  • 4,924
  • 7
  • 43
  • 65