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
When estimating the human body geometry, the query operation is performed in HGPIFuNet.
The first step is to project the sampled point set onto the image plane. But I found that the transforms parameter is None.
So in xyz = self.projection(points, calibs, transforms), only the points are rotated and translated.
Are all points in the world coordinate system? The projection operation only converts points from the world coordinate system to the camera coordinate system after rotation and translation, and does not project further to the image plane. Please give me some help.
When estimating the human body geometry, the query operation is performed in HGPIFuNet.



The first step is to project the sampled point set onto the image plane. But I found that the transforms parameter is None.
So in xyz = self.projection(points, calibs, transforms), only the points are rotated and translated.
Are all points in the world coordinate system? The projection operation only converts points from the world coordinate system to the camera coordinate system after rotation and translation, and does not project further to the image plane. Please give me some help.