graphdeco-inria / gaussian-splatting

Original reference implementation of "3D Gaussian Splatting for Real-Time Radiance Field Rendering"
https://repo-sam.inria.fr/fungraph/3d-gaussian-splatting/
Other
14.62k stars 1.91k forks source link

rasterize_gaussians gradient #1059

Open NimbusLongfei opened 23 hours ago

NimbusLongfei commented 23 hours ago

Can't we use this function rasterize_gaussians to get the gradient of the pose of the view camera in raster_settings?

If I want to do this, is it mathematically derivable?

AsherJingkongChen commented 21 hours ago

That's means the camera pose become a variable. It is possible to do a backprop. However, the current rasterizer assume the camera pose is a constant. You can check out the backward pass.