skhu101 / SHERF

Code for our ICCV'2023 paper "SHERF: Generalizable Human NeRF from a Single Image"
Other
297 stars 10 forks source link

The dimension of sampled features #35

Closed yankainan closed 4 months ago

yankainan commented 4 months ago

Thanks for your excellent work! I would like to ask, what does the dimension '3' represent in the 'sampled_features' within the 'run_model' function, where the dimension of the sampled_features is [bs, 3, sampled points number, 32]?

skhu101 commented 4 months ago

Hi, the 3 represents three different features, i.e., 1d global feature, 2d pixel aligned feature, and 3d point-based feature.

yankainan commented 4 months ago

Hi, the 3 represents three different features, i.e., 1d global feature, 2d pixel aligned feature, and 3d point-based feature.

OK! thank u for your reply!