-
Notifications
You must be signed in to change notification settings - Fork 14
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
About gaussian coverage #14
Comments
What do you mean by the "outer circle of the Gaussian"? If you look at the rasterization CUDA kernel:
The calculated sigma takes into account both covariance and the pixel distance from gaussian. If the sigma is too large, exp(-sigma) will be very small and consequently Whether or not this condition on alpha is valid outside the 3*sigma range for the gaussian, I am not sure. I would like to know that as well! :) |
How do you plot these gaussians? You wirte this visualizing code or it already exists somewhere in this project? |
When I plot out the Gaussian, I notice that there are some blank areas, but the pixels in those blank areas actually have values.
My understanding is that instead of directly calculating whether the Gaussian (3* sigma) covers a single pixel, it calculates whether the outer circle of the Gaussian covers the tiled area where the pixel is located. That is, the pixel is equally likely to be affected by the Gaussian outside of its 3* sigma?
Is my understanding correct, and is this simplified and accelerated approach common in 3DGS tasks?
The text was updated successfully, but these errors were encountered: