OBJ with texture
Zvyozdo4ka opened this issue · 1 comments
Zvyozdo4ka commented
Jake0925 commented
I got the following results using open3d on Python
I hope it helps you
def visualize(mesh):
vis = o3d.visualization.Visualizer()
vis.create_window()
vis.add_geometry(mesh)
vis.run()
vis.destroy_window()
import open3d as o3d
mesh = o3d.io.read_triangle_mesh("image/trump_hillary_obj.obj",True)
mesh.compute_vertex_normals()
visualize(mesh)