-
Notifications
You must be signed in to change notification settings - Fork 100
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
Correspondence query meshes and reconstructed meshes #19
Comments
Dear Authors, First, I would like to thank you for this great work and for making your codes publicly available. I have an issue with visualizing the reconstructed meshes from the input meshes. I succeeded in running the codes in the different modes, but when I wanted to visualize the reconstructed meshes I was not able to find a correspondence between the predicted meshes and the input meshes. I saw that in your code, you introduced the variable "unperm_predictions" instead of predictions for the visualization to highlight that the predicted meshes are not in the same order as for the input meshes. Can you recommend a way to find the predicted mesh of each input mesh? Thanks in advance! Best regards, |
Oops. This unperm stuff is leftover code from previous version. Please use https://github.com/anuragranj/coma/blob/master/facemesh.py#L65-L67 Something like this would work. predicted_mesh = FaceData.vec2mesh(predicted_vec)
predicted_mesh.show() |
This is with the provided pretrained model? or did you train from scratch? I haven't seen anything like this before? You should at least get something close to a face, because you are learning only the deviations from a mean face. |
No description provided.
The text was updated successfully, but these errors were encountered: