Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to extract cloud points from the RealSense cameras?

I am working with an Intel® RealSense™ device and the RSSDK.
I also started looking at the PCL library.
The point cloud object tracking is somehow hidden below the MetaioTrackerToolbox.
I would like to get real time data clouds points from the RealSense cameras and use them with the PCL library. Does anyone know how to extract cloud points from the RealSense cameras to be used with the PCL library (I just found this, but it needs to be ported to RSSDK)?

like image 861
Stefano Piovesan Avatar asked Mar 22 '15 22:03

Stefano Piovesan


1 Answers

I am working on a PCL grabber for RealSense cameras. Preliminary version is available in my GitHub repository. There are a few issues, most important being that the memory leaks when grabbing colored point clouds (however this is due to a bug in RealSense SDK rather than in my code). As soon as that is fixed on the Intel side and once I polish the code it will be included in mainstream PCL.

EDIT: all the issues were solved and the grabber was merged into PCL.

like image 191
taketwo Avatar answered Oct 21 '22 17:10

taketwo