-
Is there any method to apply laplacian smoothing on mesh by using pytorch geometric? Trimesh has method for laplacian smoothing but data that I have contain vertices and edge_indices. To convert mesh to triemsh I need vertices and faces. Edge_index can't be converted to face connectivity information again. |
Beta Was this translation helpful? Give feedback.
Answered by
rusty1s
May 4, 2023
Replies: 1 comment
-
We currently provide |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
atale480
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
We currently provide
get_mesh_laplacian
. Would that be helpful for you? Otherwise, I suggest to perform smoothing in Trimesh, and then convert to PyG afterwards.