-
Notifications
You must be signed in to change notification settings - Fork 49
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
Some possible bugs and questions #36
Comments
|
Thank you very much for your reply! May I ask another question? Since we already calculate the deformation of vertices by pose_deform_mlp using the pose as input, why we need to transform the vertices from canonical space to pose space? In other words, what's the difference between the offset calculated by pose_deform_mlp and the transformation of pose as the code below? Thank you very much! # in MeshHeadModule.py
if 'pose' in data:
R = so3_exponential_map(data['pose'][:, :3]) # (1,3,3)
T = data['pose'][:, None, 3:] # (1,1,3)
S = data['scale'][:, :, None] # (1,1,1)
verts_batch = torch.bmm(verts_batch * S, R.permute(0, 2, 1)) + T |
pose_deform_mlp predicts the offsets of the non-face points in canonical space. |
I understand now. Thank you very much! Best wishes! |
Hi!
Thank you for your excellent work!
When I reading your code to learn how to implement a 3DGS experiment, I found some possible bugs:
Besides, may I ask two questions about the code?
Sorry to bother you. Thank you very much!
The text was updated successfully, but these errors were encountered: