I would like to do the following with my application in Project Tango:
- Read the Point cloud data.
- Filter the points using PCL
- Segment Points Using PCL RANSAC plane fitting algorithm
- Color each segment
- Display the point cloud segmented with different color on the screen
I have reach step 3 now, and my problem is how to display the points. what I need is an output similar to the plane-fitting C++ example provided by Google. I'm using java point cloud example with native code. I need the displaying to ensure of the filter step and the segmenting output.
My problem is that I don't have any idea how should I perform the visualization in Android from PCL?.
Thanks