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
1
vote
0 answers

C# running kinect on GPU

Currently, I am working with ILGPU library. As I mentioned in the title briefly, I would like to go through the cameraSpacePoints and check whether the value is valid (if not infinity), if valid store the point in the Arrayview, as the code below. …
Joe
  • 135
  • 7
1
vote
1 answer

unity can't record audio with kinect V2

I want to record audio in Unity with the microphone from the kinectV2. I tried: audio.clip = Microphone.Start(null, true, 200, 22050) But that doesn't work. https://i.stack.imgur.com/ZEzKL.jpg The only input I have is a Kinect NUI sensor. Here's…
test test
  • 11
  • 2
1
vote
0 answers

Get pixel locations of the joints in the depth and in the RGB images

l have skeleton data of 15 joints per person. Each person is described with (X,Y,Z) coordinates. Give that coordinates, l would like to find the pixel locations in the depth and in the RGB images. How can l get that ? Is there any Kinect…
Taylor
  • 127
  • 1
  • 10
1
vote
2 answers

How to convert a pygame image to Open CV image?

I am currently getting a real time RGB video from a Kinect2 camera using Pygame and pykinect2. I want to convert it into an open cv image so that it would be helpful for me in my further Computations. import pykinect2 import pygame import cv2 import…
vinay s
  • 23
  • 1
  • 5
1
vote
1 answer

Set Kinect v2 frame rates (rgb, depth, skeleton) to 25 fps

I'm working on a project which requires all three streams from the Kinect v2 sensor (RGB, Depth, and Skeleton) to be captured, processed and streamed at 25 fps. My program works with default settings and all three streams seem to be operating at…
userDtrm
  • 533
  • 2
  • 7
  • 20
1
vote
1 answer

How to visualize surface normal of kinect data using PCL in ROS?

I am trying to get surface normal from my kinect2 data using PCL in ROS. I am having trouble in visualizing normal data. I am using Following Viewer to view real time point cloud. I have added point normal code of PCL to this code to calculate and…
1
vote
1 answer

kinect v2 grey screen in kinect studio. Likely USB controller issue? Are there any work arounds for this issue?

So I've got a few Kinect v2s and am hoping to set up an array of them to get a 3D recording of an area in space (Eventual goal is to build a 360 image from multiple point clouds) But at the moment I can't even get one working on a machine. I've…
Zacarian
  • 13
  • 3
1
vote
1 answer

What is the equivalent sensor for Intel Realsense

I'm working as an intern.They gave me a code (C++) which is on a camera of Kinect. So they want me to convert it to equivalent code for the camera Intel realsense. So basically I'm getting an error. Cam1(IKinectSensor *t_KinectSensor, WishLog…
Anirudh S
  • 39
  • 7
1
vote
1 answer

How can I flip the Kinect v2 colorstream horizontally?

I recently set-up my Kinect v2 on my win 10 PC. Intending to use it for some VR mixed reality streaming I have found that the video feed is mirrored and there is no way to flip it. I have attempted to modify the Coordinate Mapping Basics program in…
trekimann
  • 11
  • 3
1
vote
1 answer

Dynamic Gesture Recognition and Kinect with Python?

I am working on "Kinect for XBox One" on my HP Laptop with Windows 10 and 64-bit operating system. I have worked on python before and want to work in it only with jupyter notebok or python command line. The topic of my project is Dynamic Sign…
Prachi
  • 141
  • 2
  • 2
  • 13
1
vote
1 answer

Grayscale image not saving using BufferedImage.TYPE_USHORT_GRAY

I am trying to save a depth map from Kinect v2 which should come out as grayscale but every time that I try to save it as JPG file using the type BufferedImage.TYPE_USHORT_GRAY literally nothing happens (No warning on screen or in the console). I…
Alex Acquier
  • 43
  • 1
  • 7
1
vote
1 answer

How to map the 3D skeleton joints back to 2D color image without Coordinatemapper from Kinect Window SDK

I would like to map the 3D skeleton in CameraSpace back to 2D color image in Kinect without using Coordinate mapper. Do I need to transform from Depth Camera to Color Camera? In my opinion, The skeleton joints are gotten from Depth image. Thus, In…
1
vote
2 answers

Sending Kinect Body[] data over MQTT

I am trying to send Microsoft's Kinect v2 body data over MQTT to effectively map skeletal data without direct connection to the Kinect, but I can't seem to deserialize a Body[] correctly. I am publishing the a list of Bodys every frame in…
Charlie
  • 33
  • 7
1
vote
0 answers

Error in Libfreenect2 for Kinectv2

I'm trying to use libfreenect2 in python 3.6 for getting the depth matrix of the Kinectv2. But there's an error. Take a look at the code. import freenect2 import cv2 import numpy as np """ Grabs a depth map from the Kinect sensor and creates an…
Warlord
  • 33
  • 1
  • 6
1
vote
1 answer

kinect V2 get real xyz points from raw depth image in matlab without visionKinectDepthToSkeleton or depthToPointCloud or pcfromkinect

There are many ways to get real xyz from raw depth image like vision.internal.visionKinectDepthToSkeleton or depthToPointCloud or pcfromkinect . The problem is that it's not clear how these functions work exactly . All these functions use…
A. Jeed
  • 43
  • 6
1 2
3
9 10