Eugenio
Eugenio

Reputation: 681

Libfreenect2 point cloud frame capture

I've been looking through the Libfreenect2 repo if there is the possibility to capture just 1 point cloud frame out of my Kinect V2, by using Ubuntu 16.04lt, but I cannot find anything relevant to do so.

How would that possible?

Upvotes: 1

Views: 703

Answers (1)

piedar
piedar

Reputation: 2721

libfreenect and libfreenect2 are mostly just drivers for Kinect devices. Post-processing is best applied in a middleware layer such as pointclouds.org or AForge.Net; it depends on the goals of your application.

If you really want to get your hands dirty, check out this C++ point cloud example. It's written for the Kinect v1, but it might give you some ideas. If you have trouble getting the hardware to work, please also visit the repositories linked above for documentation and bug reports.

Upvotes: 1

Related Questions