I did some mesh processing using libigl and results are stored as below:
MatrixXd V;
MatrixXi F;
Matrix<unsigned char, Dynamic, Dynamic> C;
I can save these data as PLY file using the command below:
igl::writePLY("out.ply", V, F, C, false);
But I want to visualize it using PCL viewer. something similar to the code below:
pcl::PolygonMesh::Ptr mesh(new pcl::PolygonMesh);
// Here is what I need to do in between! --> converting V,F,C from libigl mesh into PCL mesh format.
// .....
pcl::visualization::PCLVisualizer viewer;
viewer.addPolygonMesh(*mesh);
viewer.spin();
Do you know how to convert/load the vertex and face value into the pcl mesh format? maybe a for-loop?
The color information is still missing, but the following code convert the format from libigl into PCL. That said, libigl has a viewer that you could use instead.