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

What is (X, Y) value in Kinect's Skeleton Joint.Position. (X,Y, Z)?

I tried this Joint rightHand = skeleton.Joints[JointType.HandRight]; double rightX = rightHand.Position.X; double rightY = rightHand.Position.Y; double rightZ = rightHand.Position.Z; then I got this : rightX : 0,04908288 rightY : -0,0657815 rightZ…
0
votes
1 answer

Detecting and displaying number of players detected using Kinect

I'm trying to display number of players detected by Kinect sensor using an WPF application. In addition to displaying number of player I have also coloured the pixels based on their distance from the Kinect. Original goal was to measure the distance…
envyM6
  • 1,099
  • 3
  • 14
  • 35
0
votes
0 answers

C++: How to read a native video file (.xrf) using Kinect1 SDK?

I have a video in raw format (.xrf) with depth data saved using Kinect SDK. Now I want to read that file, so I can do skeletal analysis. I tried to search on the internet but most of the resources talk about reading from the Kinect sensor directly.…
Shehroz
  • 347
  • 2
  • 9
  • 25
0
votes
1 answer

Kinect intrinsic calibration for skeleton tracking

I am working on 3d Skeleton tracking using Kinect. I had one question about the Kinect calibration. I use Kinect SDK for skeleton tracking but when it is projected on screen I see the skeleton joints are deviating from its actual position. I had a…
0
votes
0 answers

Get limit of the human body in Kinect

I need to resolve this situation: Need to get the ends of the body of a person through the Kinect sensor. Thus, need the X, Y coordinates of each point. I have logic to it, which is move the skeleton points to the end of the body of the person, but…
Leomar de Souza
  • 677
  • 10
  • 23
0
votes
0 answers

Kinect v2 sensor Color-Depth Mapping misalignment using matlab

so I am performing a mapping of depth frame into the color space using rotation and translation values I obtained during calibration So below are the results: In this image the mapping is gud; however, a couple of frames down the video, here is the…
Ali P
  • 519
  • 6
  • 21
0
votes
1 answer

Hand detection (cursor) within Kinect Region not working in new project

I have a two extremely simple Kinect for Windows projects. One project is based on the original Kinect for Windows development SDK V2 code sample titled ControlsBasics-WPF (available in the V2 SDK browser) and another which was created from scratch…
Maxim Gershkovich
  • 45,951
  • 44
  • 147
  • 243
0
votes
1 answer

Finding the offset(difference between coordinates) for Kinect

I'm working on a kinect project..I trying to find the offset(the difference between coordinates of a joint) and send it through a network using TCP/IP..However, I am facing the problem of accessing the previous values of the joint.. These are my…
Thale
  • 123
  • 4
  • 15
0
votes
1 answer

Filter a point cloud real time... PCL

I wanna display a point cloud filtered in real time, I mean not from PCD files, I've been trying to manipulate the example code from PCL Documentation, I'm new at this stuff and c++ beginner. Here's my code, it has errors, but I can't understand.…
Erick Medina
  • 25
  • 1
  • 7
0
votes
0 answers

C# Faulty Kinect skeletal tracking mechanism or mistake in program(more likely the latter)

I've been trying to write a program for Kinect using Skeletal Tracking that will determine whether or not there are people/a person(seated or standing) is in front of the Kinect. The problem is that my program always outputs "false"(meaning it has…
0
votes
1 answer

Skeleton Tracking With Multiple Kinect Sensors

I'm playing around with using Kinect for mapping skeletons and can see the device supports up-to 4 sensors connected simultaneously. However unfortunately I only have 1 sensor at my disposal at the moment and as a result I am unsure about behavior…
Maxim Gershkovich
  • 45,951
  • 44
  • 147
  • 243
0
votes
0 answers

Replaying Kinect data in a unit test

I have recorded Kinect skeleton streams using the Kinect Toolbox's KinectRecorder class. I would like to replay the entire recorded file in a unit test using the KinectReplay class from the Kinect Toolbox. The recordings are added to my test project…
0
votes
1 answer

My XBOX 360 Kinect app stopped working when I moved it to Windows 8.1

I finally upgraded my OS to Windows 8.1 and now my XBOX Kinect app that I built doesn't work. Also, none of the example project that come with the SDK and Development tools works either. I have the latest downloads and everything. Windows 8.1 is…
robertlara
  • 60
  • 2
  • 8
0
votes
1 answer

How to draw the skeleton from the available coordinates?

as i typed in the question, i want to draw the skeletons-line (or draw the line between two points ) from the available coordinates. After drawing, the completed manual-skeleton will look like this. It draw as same as Skeleton Basic did, but the…
iamatsundere181
  • 1,401
  • 1
  • 16
  • 38
0
votes
0 answers

Calculate Gesture Speed

Using the Kinect.Toolbox from codeplex, how can we get the speed of a swipe gesture I was assuming using the following function from the SwipeGestureDetector class: protected bool ScanPositions(Func heightFunction,…