skhu101 / GauHuman

Code for our CVPR'2024 paper "GauHuman: Articulated Gaussian Splatting from Monocular Human Videos"
Other
322 stars 27 forks source link

How to calculate sdf for world_src_pts #20

Closed yejr0229 closed 5 months ago

yejr0229 commented 8 months ago

Hi,Id like to calculate signed distances for world_src_pts in gaussian_model.py,so I can know whether this point is inside body or not.Could you tell me how to achieve this roughly?

skhu101 commented 6 months ago

Hi, thanks for your interest in our work. One possible way is to find the nearest face in the SMPL vertices and then calculate the signed distances to this face. If you hope to involve the SDF concept in the modelling framework, maybe you can refer to 3DGSR: Implicit Surface Reconstruction with 3D Gaussian Splatting (https://arxiv.org/pdf/2404.00409.pdf).