Why approximate alpha value instead of compute it as in paper?
alvaro-budria opened this issue · 3 comments
Hi, I am not sure why the
In the paper, we find this expression
where consecutive samples in a ray are utilized to obtain the
In the code
Lines 220 to 247 in 629b9cf
we see that instead of the expression above, we approximate the section points at each computed SDF value, which requires additional inputs: the directions and the intersample distances in the ray.
I wonder why this is done in this way. It seems to reduce the amount of queries to the SDF function by half, at the expense of introducing some noise. Could you elaborate on this choice?
Same question
I've attempted to answer this question in a previous issue:
Let me know what you guys think, because I'm not entirely sure myself why they are doing this approximation.
Yes, I agree with your comment there in that issue. It's for geometric consistency.