Quantcast
Viewing all articles
Browse latest Browse all 14069

I encountered this error when I was working with shapennet files using the Open3D library

This is error: Skipping non-triangle primitive geometry of type: 2

How to eliminate this error and load the obj file normally

My open3D version is 0.14.1

Code:cad = o3d.io.read_triangle_mesh(cadroot)cad = cad.sample_points_uniformly(10000)cad_homo = np.concatenate((np.array(cad.points), np.ones([np.array(cad.points).shape[0], 1])), axis=-1)


Viewing all articles
Browse latest Browse all 14069

Trending Articles