Kinect / PyKinect2

Wrapper to expose Kinect for Windows v2 API in Python
MIT License
496 stars 236 forks source link

Anyone can provide video tutorial on setup? #107

Open akash02ita opened 1 year ago

akash02ita commented 1 year ago

I would appreciate if a video tutorial is posted regarding installation of PyKinect2. Using directly pip install pykinect2 works but fails to run the examples provided.

akash02ita commented 1 year ago

even used Anaconda 32-bit still same issue comes up.

SujithChristopher commented 1 year ago

It works on python 3.7

see this #88

MicroBugTracker commented 1 year ago

This happens due to a deprecated function time.clock() in python 3.8 which is present in the PyKinectRuntime.py To solve the issue navigate to path_to\pykinect2\PyKinectRuntime.py

Find and replace all instances of time.clock() with time.perf_counter()