Closed Charlulote closed 1 year ago
Because we are looking at coordinates in the 3D camera space, the x and y coordinates will be constant for each given input RGB image (e.g. if we define the top left corner of an image as (-1,-1), then the top left corner will always be (-1,-1) for all of the images. Same goes for other locations on an image). However, the z coordinate will not be the same for each image because the orientation of the smplx mesh corresponding to each image is not the same. Thus, z-coordinate at, for example, the bottom right hand corner can be 0.5 for image 1 but 0.8 for image 2.
Well, this leaves me puzzled, as your explanation doesn't seem to align with my understanding of the paper's description. However, it may be unnecessary to delve deeper into this issue. Anyway, thanks.
In line 468-470 of
Thuman_dataset.py
, it seems to be assigned to constentself.coordinate_matrix
, which is initialized as a grid of rays in constructor. So which one corresponds to the coordinates information mentioned in the paper?