cvg/depthsplat

How to save gaussian splatting

Opened this issue · 0 comments

#6 (comment) suggested that we can use https://github.com/donydchen/mvsplat/blob/main/src/paper/generate_point_cloud_figure_mvsplat.py to visualize 3D Gaussians. How can I do that?

Also #6 (comment) has mentioned that we can use export_ply function to export ply.

def export_ply(

However, function export_ply is only called by function visualize
Which is only called during validation.
for k, image in self.encoder_visualizer.visualize(

How can I export the gaussian during testing? Thank you.