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
13.36k stars 1.7k forks source link

generate new view and locate its coordinate #792

Open xytjc opened 3 months ago

xytjc commented 3 months ago

Yeah, I want to generate a 'new' pose view (different from my input images) and locate its coordinates, how shoud i do

smileyenot983 commented 3 months ago

Gaussian splatting does interpolation well. You can pick 2 views(T1, T2) and interpolate pose between them. For example, using spline. After that you can create your own View and pass it to render function. It would return a dict, where generated new view is under "render" key.