cleardusk/3DDFA_V2

OBJ with texture

Zvyozdo4ka opened this issue · 1 comments

How did you get this result?

image

1
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)