28 questions
3
votes
1
answer
377
views
Cannot import pykinect2
I have installed KinectV2 SDK on my Windows 10 system and test it successfully inside SDK browsers.
I tried to run some code from Pykinect2 library but there was an issues while importing:
from ...
0
votes
1
answer
719
views
Why is "from pykinect2 import PyKinectV2 " not working? [duplicate]
I'm trying right now using PyCharm IDE to just turn on my camera Kinect v2 using PyKinect2, but I can't. If they are is any solution can you help me? This is the code:
import pygame
from pykinect2 ...
1
vote
1
answer
927
views
Unable to run pykinect2 on python 3.11.1 [duplicate]
I have created a virtual environment and used pip install pykinect2 to install pykinect2, but when I run the code import pykinect2 I am presented with the following error. I am using VSCode as my IDE.
...
1
vote
1
answer
341
views
pykinect2 library works only with comtypes 1.1.4 which only works with python 2.7. Hence, not able to integrate media pipe, hand tracking with it
COMtype compatibility issue :
As we know mediapipe works well with higher versions of python. i.e., 3.x and higher.
I am looking a for ways to implement features of mediapipe into pikinect2 for hand ...
1
vote
1
answer
1k
views
Converting a sequences of RGB images and depth files to mkv file format
I have a sequences of pngs and corresponding depth files (aligned to the corresponding images) from an external camera.
RGB:
1.png
2.png
3.png
etc
150.png
Depth:
1.txt
2.txt
3.txt
etc
150.txt
I also ...
1
vote
0
answers
233
views
How to use pykinect to fuse depth map and color map
I have now completed the calibration of Kinect depth camera and RGB camera, obtained the internal and external parameters, FX, FY, CX and cy of the camera with MATLAB, and calculated R and T with the ...
0
votes
1
answer
686
views
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 ...
1
vote
1
answer
665
views
PyKinectv2 Body tracking count
New to pykinect and kinect in general -- trying to simply get a count of bodies currently being tracked. No skeletal or joint data required. Just want to get a running count of bodies currently in ...
1
vote
1
answer
424
views
Getting skeletal data in pykinect (xbox 360 version)
I'm having trouble finding any sort of documentation or instruction for pykinect, specifically for the xbox 360 version of the kinect. how do I get skeletal data or where do I find the docs?? if I ...
0
votes
2
answers
409
views
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....
2
votes
1
answer
3k
views
Simply get rgb and depth image stream with pykinect and python3
I want to get the depth and rgb video stream from a kinect (version 1).
I'm using the Python 3 version of pykinect, not CPython.
I have found some examples but Pykinect documentation is nearly ...
0
votes
1
answer
1k
views
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 ...
1
vote
0
answers
157
views
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.
...
0
votes
1
answer
3k
views
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 ...
1
vote
2
answers
3k
views
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.
...