Visualizing point cloud mesh WITH vertex quality values (trimesh, open3d, mayavi…)
enter image description hereI have a ply. file that contains xyz (raw and normalized), red, blue, green, and alpha and quality values for a mesh. My goal is to visualize the object with a heat map depicting the variation in quality values in the object, which I was successfuly able to do using just numpy, meshio, and matplotlib. However, I want to customize the visualization to improve shading and it appears as though libraries such as open3d and trimesh are more ideal for this. The only problem is that these libraries seem to only extract the xyz points from the mesh, and the quality values are a big part of my evaluation. Does anyone have any tips on how use one of the more advanced visualization libraries either conjunctly with my previous code or separate? I’ve attached images of my code and result.