You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If I understand correctly, w0 is the the ground truth w. As you mentioned the shapenet objects are symmetrically aligned w.r.t Y-Z (x=0) plane, I suppose this line should be w0_ = LA.inv(RT).T @ np.array([1, 0, 0, 0]). Or am I completely wrong?
BTW, many congrats on your promotion! Impressive work!
Looking forward to your reply.
Yancong
The text was updated successfully, but these errors were encountered:
Thanks for asking. The problem here is that ShapeNet releases in the obj format and it seems that obj wavefront specification only says things about "forward direction" and "upward direction" rather than xyz axes. Therefore, different software has different mapping for xyz for obj files: See the difference between blender and meshlab:
The implementation here uses the blender convention. We will update the paper accordingly to avoid confusion. Nice catch!
HI, Yichao,
I am having some trouble understading this line:
https://github.com/zhou13/symmetrynet/blob/830bd9430c1750d31faffba60e18b075374c1b42/sym/datasets.py#L95
If I understand correctly, w0 is the the ground truth w. As you mentioned the shapenet objects are symmetrically aligned w.r.t Y-Z (x=0) plane, I suppose this line should be
w0_ = LA.inv(RT).T @ np.array([1, 0, 0, 0])
. Or am I completely wrong?BTW, many congrats on your promotion! Impressive work!
Looking forward to your reply.
Yancong
The text was updated successfully, but these errors were encountered: