We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How did you get this result?
The text was updated successfully, but these errors were encountered:
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)
Sorry, something went wrong.
No branches or pull requests
How did you get this result?
The text was updated successfully, but these errors were encountered: