Questions tagged [pykinect]

PyKinect is a Python module for interacting with the Kinect SDK.

PyKinect is a module for interacting with the SDK.

For more information, see the homepage.

28 questions
1
vote
1 answer

CX_Freeze come up not responding with Pygame and Pykinect

I have my code here: import thread import pygame from pykinect import nui import os import Tkinter as tk import tkMessageBox root = tk.Tk() root.withdraw() DEPTH_WINSIZE = (640, 480) screen_lock = thread.allocate() screen = None tmp_s =…
Nvidip
  • 81
  • 7
1
vote
1 answer

PyKinect helps/ about TODO in version 2.1b1 get_next_frame()

I am working with Kynect + Python (without using Micosoft visual studio), on windows 7. Does anybody know how to get frames from Kinect without using an event loop? I am refering to this method of PyKinect/nui/init.py def get_next_frame(self,…
1
vote
1 answer

Converting Python (PyKinect) Skeleton data to Points (X,Y)

This is a pretty simple issue but I am new to Python and I can't seem to accomplish it. I want to convert Skeleton data co-ordinates in Python (PyKinect) to Points (X,Y). I know that the similar task can be achieved in C# (using Microsoft.Kinect…
kerason
  • 13
  • 1
  • 4
0
votes
0 answers

is it possible to rewrite pykinect2 to be compatible with the xbox 360 kinect

I have an xbox 360 kinect and want to build a project using it and I am struggling to get it set up as i know the most up to date version of pykinect (xbox 360) is written for python 2.7 which I would like not to use and pykinect2 is written for the…
hugo
  • 31
  • 4
0
votes
0 answers

Working Xbox Kinect support within python?

Does anyone know of any up to date or close to that package for using an xbox kinect within python or a way to use an older version of any packages out there? After trying to use pykinect the install fails due to an out of date windows sdk which I…
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
2 answers

Integer value error while importing the kinect library in python

I want to track human, While "from pykinect import nui" gives me below error File "C:\ProgramData\Anaconda3\lib\site-packages\pykinect\nui\structs.py" NUI_SKELETON_POSITION_COUNT = JointId.Count.value AttributeError: 'int' object has no attribute…
msahab
  • 11
  • 4
0
votes
1 answer

pykinect2 extract depth data from individule pixel KinectV2

I am trying to extract the depth data from a pixel that is clicked on with the mouse. Its works when I print the X,Y coordinates. It dosen't work when I try to print pixel depth data .The code Im attempting to use is a modified from how to extract…
joebob
  • 11
  • 6
0
votes
1 answer

Save Kinect RGB and Depth Images using Pykinect and Open CV

I am using PyKinect with OpenCV in windows to save RGB and kinect Depth images. Which works fine to display both RGB and Depth images. Frame rates for both RGB and Depth images are 30FPS. I want to save the RGB images in .jpg format and Depth…
amran hossen
  • 270
  • 5
  • 11
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
2 answers

How to get the z coordinate from the depth frame obtained by the pyKinectV2 BodyGame example

After playing around a while with the pyKinect2 BodyGame example and doing some research i couldn't figure it out how to receive the joint z value by using the x and y coordinate from this joint. The author mentioned: You need to get z from depth…
theSOMguy
  • 1
  • 4
0
votes
1 answer

Kinect RGB data using PyKinect directly, without pygame, to be processed using OpenCV

I'm using pygame with Kinect sensor v1 (ofcourse in python). Are there any methods to use data from the sensor directly for processing using opencv? (without pygame) I tried using frame.image.bits, but it gives me a 1d array. Is there any way I can…
0
votes
1 answer

How to export 3D files from python(pygame)

I have created a pygame based environment. In that I am importing a spherical ball blender based obj file. Using pykinect, I am trying to mould the object with inputs from a kinect for Xbox 360 camera. All is working ok. However I wish to export the…
Sagar
  • 13
  • 3
1
2