lioryariv / volsdf

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

about sampling implementation.

lingtengqiu opened this issue · comments

Thanks for your great work.

I saw you compute d_star, using a triangle rule. However, In your paper, you said that d_star = max(0, |d_i+1| + |d_i| - ti+1 +ti)
I am confused about it. could you tell me why you use the triangle rule instead of d_star = max(0, |d_i+1| + |d_i| - ti+1 +ti)
In my opinion, if you use max(0, |d_i+1| + |d_i| - ti+1 +ti), the code would be easier than the triangle rule.

The above issue was fixed. I saw the old version paper. triangle rule is used In arxiv-v2 version.