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

How to read the Kinect v2 IR sensor using Opencv in python

I am able to get the RGB camera to work but not the IR sensor Here's the code that allows me to use the RGB camera vid = cv2.VideoCapture(0) while vid.isOpened(): ret, frame = vid.read() if not ret: break cv2.imshow('frame',…
0
votes
0 answers

Is there a way to obtain raw time-of-flight correlation measurements from Kinect V2 camera?

I'm trying to get the raw time-of-flight correlation images from the Microsoft Kinect V2 camera. I'm familiar with the general principles of time-of-flight imaging, but I'm having trouble accessing the raw images from the Kinect V2. Is there a way…
Gaurav Mishra
  • 71
  • 1
  • 6
0
votes
0 answers

cv2.VideoWriter made the code slower compared to cv2.imshow (multiple kinect V2 sensors)

I've been trying to record multi-source video(color, depth, IR) from two kinect V2 sensors. I'm using libfreenect2, drivers that enables multiple kinect v2 sensors and its python wrapper:pylibfreenect2. The example code is for single sensor. It…
kamicj
  • 11
  • 1
  • 3
0
votes
0 answers

Why does Opencv work with my webcam but nnot with my kinect v2?

I am using A kinect V2 instead of a webcam for a opencv project and wanted to test some code using it. I used the laptop webcam and it worked perfectly. But with the kinect it turns on and then crashes the program and gives a error message. This is…
Haze
  • 1
  • 1
0
votes
1 answer

How to call multiple kinect2 device with pykinect2

Is it possible to work with multiple (two) kinect2 device with pykinect2? I didn't find any information on how to call the second device. By default, the image comes from the main kinect. I will be happy to any advice, thank you! my code for kinect…
0
votes
1 answer

Is it possible for Azure Kinect Body Tracking to accept depth data from a different depth camera?

This is being done in a Unity project. I'm currently experimenting with creating a new Azure Kinect Capture object and filling it with data from the color, depth, and IR frames being created by the K2. Since an Azure Kinect camera isn't supposed to…
Kojah
  • 1
0
votes
1 answer

Kinect Depth and IR image in UWP (remove color)

I am working with Kinect V2 UWP C# for XBOX and windows. I followed Kinect UWP demo for this purpose. I was able to read and display frames as also shown in Camera Frame sample but I noticed that the Depth and IR images are in color for…
Peri
  • 11
  • 3
0
votes
1 answer

Azure Kinect - Setting World Scale

I'm trying to get body tracking to register on small action figures that are about 12" tall. I've tried using other depth sensors like the Zed2 and D435i and their skeletal SDK's recognize the toys as "humanoid" and attempt to track the skeleton. Is…
0
votes
0 answers

Save the captured Kinect images without increasing the memory

I'm a newbie in C# and Kinect. Currently, I'm working on a project which requires saving the incoming Kinect v2 frames into a local directory. I use the following codes to save the captured images. However, while I open the Task Manager during the…
0
votes
1 answer

Can I have the real world distance in meters of an object from my kinect sensors?

I have a kinect (v2) that captures the depth image. In the depth image, I have some objects on a table; I want to have the distance from the kinect sensors to the objects on the table. How can I calculate the distance in (m or cm) of the objects on…
EE2017
  • 49
  • 11
0
votes
0 answers

MultiSourceFrameArrived -= is not working. How can I disable it?

I´m working on a Kinect project. I'm recording data from the received frames. When I have to process the frame data, the program is taking a lot of time. In the meanwhile, I want to disable the EventHandler MultiSourceFrameArrived. The thing is, I…
0
votes
1 answer

error in pcl object tracking code using kinect v2

I'm trying to move my robot arm using the real-time coordinates of an object that I'm moving around. the object is made from two colored ping-pong balls connected by a 20 cm rod. I'm trying to use PCL library and Kinect v2 to get the…
0
votes
1 answer

Kinectv2 - How to remove depth color from kinect fusion explorer - wpf example c#?

I have a project with Kinect v2. I have downloaded kinect fusion explorer - wpf example from kinect sdk. In the example, I get a mesh like the left one in the picture. I want to get it like the right one, without colors. Does anybody have an advice…
0
votes
1 answer

Import error for "enum" in Ubuntu with python 3.6

I am trying to import "enum" but I get a import error saying it cant find it. But it is there. (cvnano) joev2@joev2-desktop:~/pylibfreenect2$ sudo python selective_streams.py Traceback (most recent call last): File "selective_streams.py", line 8,…
joebob
  • 11
  • 6
0
votes
1 answer

How to convert jpeg files that I got from color video stream by Kinect SDK2 into .AVI in C#

I use Kinect SDK 2, C#. I want to save color stream with .AVI format. I get every frame and save them in .jpeg format with a serial number. I am not sure is it better to do it with .png or .jpeg. I need to turn these images into .AVI file in my…
user11597414