But then when I import the PLY in SuperSplat, the rendering is a lot weirder. The colors are off. It’s not as opaque. And there’s not really any settings to play with. Is there a PostShot to SuperSplat tutorial somewhere? Am I missing settings?
This looks to me like the “render target precision” issue we have seen before. When the scene is made up of a large number of semitransparent overlapping gaussians, then the render target precision must be float32 to correctly accumulate all the layers of gaussians.
We render and accumulate to a RGBA8 buffer by default. For the vast majority of scenes this is fine. However, we have 3 or 4 scenes which display the precision issue you’re seeing here.
We have discussed whether it’s worth defaulting the backbuffer in SuperSplat to float32 (meaning all users take a performance and memory hit, but it always just works correctly) or whether to provide a user option to toggle the precision.
Note that this model will likely never run very well in realtime. The fill rate required is generally just too great as soon as the camera approaches one of the surfaces.
I am interested to know what causes scenes like this to be generated. Whether it’s training parameters or source images or something else. If you load the model into SuperSplat you will see that double-clicking on the model doesn’t work because there are no solid gaussians at all. Very strange.
You can also see on the SPLAT DATA panel, opacity is all very low. Not a single gaussian in the scene has opacity larger than 0.3. Why? So strange!
Thanks! Is there anything I can do on my end? Techs like this really live and die because of the quality of authoring tools and documentation. The PlayCanvas viewer/editor is fantastic as usual but getting there is weird. It’s a lot of trial and error without a clear understanding of what’s really happening.
I don’t understand how people got something that clean and sharp:
Both of those splats were not generated from regular photogrammetry. Instead, they’re generated from 100s of rendered images from Blender. I believe using this tool:
I came to the forum to ask pretty much the same question - why does it look so good in postshot but worse when uploaded in supersplat. Initally thought there was something with Spherical harmonics but since support for that was added, i’m thinking if I see the same issue as ou describe here - with a lot of transparent gaussians. I too created my dataset using Olli’s camera array tool in blender.
Fortunately we can very easily update supersplat to render float32, but what about runtime? If users want to use these models at runtime also, then that would require float32 target there too.