I'm trying to create a Point Cloud from a .ply File which holds vertices (v x y z r g b) and their color recorded from a Kinect v2. What I've tried so far:
At first I used MeshLab to check whether my .ply File is correct. It is. So I tried to export the .ply file as .obj to use Helix-Toolkits
HelixToolkit.Wpf.ModelImporter
However, this gives me a blank screen, both when using my own code and the ModelViewer in the Helix-Toolkit Examples. This is probably due to the fact that the ply file holds no information about the faces.
1. Is there a simple way to create an obj file from ply, adding faces in the process?
2. Is there another - possibly better way - to create Points from the ply file and displaying them on screen using Helix?