ibaiGorordo / pyKinectAzure

Python library to run Kinect Azure DK SDK functions
MIT License
454 stars 113 forks source link

How do I extract depth data? #58

Closed ghadaAy closed 2 years ago

ghadaAy commented 2 years ago

I can't seem to find a way to extract the depth data from kinect DK. I found a few blogs that talk about the use of getRawDepth() but it's not in Kinect DK I think.

ibaiGorordo commented 2 years ago

In the exampleDepthImage.py example, you can replace get_colored_depth_image with get_depth_image to get the depth image.

You can check the capture.py script for all the possible data you can get.

ghadaAy commented 2 years ago

Thank you alot