-
Notifications
You must be signed in to change notification settings - Fork 29
New issue
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
kaolin error #12
Comments
You can use Also, note that in |
Hi, I have exactly the same problem as you. Did you fix it? Can you give me a hand? Thanks so much! |
Since there is little difference between the kaolin v0.1 and upper versions, i solved it by comment |
Thanks so much! |
How to use the kaolin.metrics.trianglemesh.point_to_mesh_distance in fit_SMPLicit.py? |
For kaolin 0.15.0, you can read the code in detail, it gives the examples in kaolin.metrics.trianglemesh.point_to_mesh_distance. coords_tensor = coords_tensor.unsqueeze(0) coords_tensor = coords_tensor.contiguous() from kaolin.ops.mesh import index_vertices_by_faces face_vertices = index_vertices_by_faces(v_inference.cuda(), smpl_faces.cuda()) unsigned_distance,, = kaolin.metrics.trianglemesh.point_to_mesh_distance(pointclouds=coords_tensor.cuda(), face_vertices=face_vertices) unsigned_distance = torch.abs(unsigned_distance) |
The text was updated successfully, but these errors were encountered: