Questions tagged [kinect-v2]

Kinect for Windows v2 (K4W2)

Kinect for Windows v2 (K4W2) which typically uses the Kinect for Windows v2 SDK, not to be confused with Kinect for Xbox 360, or older versions of Kinect for Windows using Kinect for Windows SDK v1.5 or Kinect for Windows SDK v1.8

This sensor can also be used on Linux and OSX via libfreenect2

144 questions
0
votes
2 answers

Emgu.CV.Util.CvException: 'OpenCV: i < 0'

I am new on EmguCv and kinect v2 development. I am trying to draw the contour of the hand that was detected on a blank Gray Image. And I am encountering this Exception that always occurs after the line of code: CvInvoke.DrawContours(image, temp,…
0
votes
1 answer

Kinect V2 vs PyKinect2 : difference between depth image

I'm currently working on the kinect V2 to have access to the depth image. I use the library in python PyKinect2 that help me to have this images. My first problem is : -> I run KinectStudio 2, and look for the depth image, i look for the…
kevingiroux
  • 155
  • 1
  • 14
0
votes
1 answer

Kinect v2 with Openni 2 and show with OpenCV 3.1.0

I am a newbie in programming and very much in Computer Vision. I am assigned a project in university to detect objects using the Kinect2 sensor. I am trying to open Kinect 2 sensor via opencv 3.1.0 with VideoCapture method. I am using device.open…
0
votes
1 answer

Kinect not being detected on other computers after deployment of UWP

I recently finished to develop a UWP based on the SDK example CameraFrames. On the second screen of this example (and also on my app) you can choose to preview the frames taken by the Kinect v2.0 as shown below. On the top of the image on the right…
0
votes
1 answer

How to move bone according to tracked body movement using kinect

I am new to Unity and Kinect v2. I am creating a virtual dressing room application on my own. I need some help in cloth movement along with body. I have mapped bone of gameObject with Skeleton Joint. Shin Bone is working fine. But I am unble to map…
0
votes
0 answers

How to control bones of Cloth in C# using kinect and unity

I am working on a application similar to Virtual Dressing room. I want to map bones of cloth with bones of Model. I have bones of Model but unable to fetch bones from Cloth (GameObject). I have tried following things: //go is GameObject…
0
votes
2 answers

Aligning Kinect V2 RGB picture and depth map using java

I would like to know if there is a way to align the RGB picture and the depth data of a Kinect V2 using the colour data as a starting point using Java, I am actually using java for Kinect as a wrapper and it does not seem to give me the possibility…
Alex Acquier
  • 43
  • 1
  • 7
0
votes
0 answers

Kinect V2 - Duplicate values when storing locations of points

This is the code I use to record the points that includes a few computations. So yep, I get the value locations of the point, do some math, then save them to a list. gesture.L.E.AddFrameDescriptor( joints[JointType.ElbowLeft].Position.X,…
0
votes
1 answer

How can I get an approximate upper body volume from the Kinect skeleton?

I want to do a fitting room app using the Kinect. Since I need to measure the player clothing size (S, M, L, XL) I must get the player's upper body "approximation" mass only using its skeleton (not using depth data). I don't need a very precise…
0
votes
1 answer

How to efficiently map a single ColorSpacePoint to a CameraPoint using the Kinect SDK?

I'm trying to simply get a 3D CameraSpacePoint position for a given 2D ColorSpacePoint from the RGB stream. Looking at the CoordinatorMapper Methods, the only methods for mapping from color coordinates are: MapColorFrameToDepthSpace Maps a frame…
George Profenza
  • 50,687
  • 19
  • 144
  • 218
0
votes
1 answer

Shift in Point Cloud acquired using Kinect v2 API

I am acquiring Point Cloud using Kinect v2 API in Windows 10 64 Bit OS. Below is the code snippet- depthFrame = multiSourceFrame.DepthFrameReference.AcquireFrame(); colorFrame = multiSourceFrame.ColorFrameReference.AcquireFrame(); if (depthFrame ==…
ravi
  • 6,140
  • 18
  • 77
  • 154
0
votes
1 answer

Acquiring frames in real time using kinect v2 in python

How can I get frames of skeletal data in real time using kinect v2 in python? How do I acquire an mp4 video file using kinect v2? The file format of video which is acquired using kinect studio is .xef, but how do I separate frames of this .xef file…
0
votes
1 answer

which software/libraries should install to do kinect programming using python language and in linux os

We are doing a project on "gait analysis" in Ubuntu using skeleton tracking. Which are the libraries we will need in order to start the project . Are there any available tutorials which can help us ?
0
votes
1 answer

IndexOutOfRange Exception while trying to get color values from Kinect v2 in C#

I am trying to get the RGB values of each CameraSpacePoint in Kinect v2. While trying to access converted frame data, the code is throwing IndexOutOfRangeException. I found out that following lines are throwing this error: byte red = pixels[4 *…
ravi
  • 6,140
  • 18
  • 77
  • 154
0
votes
2 answers

What is the unit for raw data in Kinect V2?

I am trying to figure out what is the raw data in Kinect V2? ... I know we can convert these raw data to meters and to gray color to represent the depth .... but what is the unit of these raw data ? and why all the images that captured by Kinect…
seereen
  • 193
  • 1
  • 4
  • 20