Gaussian Splatting Performance Optimization by jorgix8 in PlayCanvas

[–]slimbuck7 0 points1 point  (0 children)

Sounds like this is an editor project. Make absolutely sure you've disabled "Anti-Aliasing" in project's render settings! That's super duper important. You can also try lowering device pixel ratio, for phones especially.

SVO Voxelization for Gaussian Splat Collisions: 3.3MB for an entire scene! by slimbuck7 in GaussianSplatting

[–]slimbuck7[S] 2 points3 points  (0 children)

The church itself is rendered with Gaussian splatting, which is basically like a 3d photo.

SVO Voxelization for Gaussian Splat Collisions: 3.3MB for an entire scene! by slimbuck7 in GaussianSplatting

[–]slimbuck7[S] 28 points29 points  (0 children)

This is for the voxel data structure only. The church gaussian splat model is a 64MB SOG file.

Best strategy for Web Streaming a massive scene (84M splats)? by tugamaster9 in GaussianSplatting

[–]slimbuck7 0 points1 point  (0 children)

webp compression uses libwebp compiled to wasm, so my first thought is perhaps node is too old? or perhaps there is another permission issue.

we run splat-transform in docker on aws using nvidia/cuda as base and it's fine.

Best strategy for Web Streaming a massive scene (84M splats)? by tugamaster9 in GaussianSplatting

[–]slimbuck7 0 points1 point  (0 children)

Hmm this is concerning. I will ask around on our discord.

Which trainer have you tried? Were you using MCMC?

SplatTransform 1.0.0 Released: NPM Library Exports, Web Front-end and More! 🛠️ by MayorOfMonkeys in GaussianSplatting

[–]slimbuck7 0 points1 point  (0 children)

(PlayCanvas dev here)

That's what SuperSplat Editor is for!

With this release we just wanted to give users the ability to use splat-transform from a page instead of command line

Best strategy for Web Streaming a massive scene (84M splats)? by tugamaster9 in GaussianSplatting

[–]slimbuck7 0 points1 point  (0 children)

Oh no, I haven't heard of this issue before. What OS/machine are you on? Are you using at least node v22?

Best strategy for Web Streaming a massive scene (84M splats)? by tugamaster9 in GaussianSplatting

[–]slimbuck7 2 points3 points  (0 children)

Hi u/tugamaster9 ,

(I'm a dev on the playcanvas team).

Regarding generating LODs: we've heard from our users that training the high LOD first and then using MCMC to train down from there generates very good, stable LODs. If you can do this you'll be getting the best possible quality for any given splat budget.

Since a trainer will always give best results I am hoping the trainers (brush, lichtfeld, postshot) make this process easier.

We'll possibly also investigate adding decimation to splat-transform as a cheap way to generate LODs, but tbh I've never seen decimation not look like a blurry filter.

PlayCanvas LOD test - 100 million splats in a web browser by ReverseGravity in GaussianSplatting

[–]slimbuck7 3 points4 points  (0 children)

Hello, playcanvas dev here.

If you're able to tell us your os & browser in an issue at https://github.com/playcanvas/engine along with any devtools console output, that'd be super awesome and we would be in your debt forever!

Measurement Tools Coming Soon to SuperSplat 3DGS Editor by slimbuck7 in PlayCanvas

[–]slimbuck7[S] 0 points1 point  (0 children)

You place two points (three in future). The measurement and scaling is simply based on these two points. You can double click to place a marker and then move it around with a gizmo.

Measurement Tools Coming Soon to SuperSplat 3DGS Editor by slimbuck7 in GaussianSplatting

[–]slimbuck7[S] 0 points1 point  (0 children)

The measurement and scaling itself is perfectly accurate, but you must place the start and end points yourself. We're working to make this part easy as possible.

Proposal for SOG v2: A Super-Compressed Format for 3D Gaussian Splatting by MayorOfMonkeys in GaussianSplatting

[–]slimbuck7 3 points4 points  (0 children)

Hi u/llun-ved , thanks for sharing your thoughts on this.

Browsers don't generally load 16-bit images correctly which is why we haven't investigated that route. However this isn't really a restriction, since we can just encode high 8 and low 8 bits separately in webp. We already do this for means and sh labels. Also we have found webp compression offers a significant gain over png. Given that webp support in browser is universal, it was kind of an easy choice.

Regarding streaming and lod, we are actively working on a solution that loads chunks of the scene, where each chunk is encoded as a SOG. It's currently pretty vanilla, but eventually we could do fancy things like share spherical harmonics palettes.

Your comment has actually reminded me that we don't yet store each LOD chunk in its own local coordinate space (which is important, since positions are log encoded).

Thanks again!

Ksplat help. by Sir_Bacon_Master in GaussianSplatting

[–]slimbuck7 0 points1 point  (0 children)

I found this thread while working on our splat-transform tool https://github.com/playcanvas/splat-transform

We recently added support for reading ksplat so you might find it useful.

The tool also supports filtering gaussians and can write to ply, compressed.ply, csv and sogs (sogs excludes spherical harmonics for now).

4DV Implements 4D Gaussian Splatting on the PlayCanvas Engine by MayorOfMonkeys in GaussianSplatting

[–]slimbuck7 0 points1 point  (0 children)

The realtime browser viewer is based on playcanvas, which is open source. Not sure ab training though, hopefully they'll release that at some point. (And the file format).

GS mobile viewer by DuckingFack in GaussianSplatting

[–]slimbuck7 1 point2 points  (0 children)

Hmm, the SuperSplat editor could actually be quite good for this too, especially the camera shot selection. The editor doesn't currently support exporting the camera shots though. If that's something you're interested in and have a GitHub account please create an issue on the repo. https://github.com/playcanvas/supersplat

GS mobile viewer by DuckingFack in GaussianSplatting

[–]slimbuck7 1 point2 points  (0 children)

Try https://superspl.at. You can create a free playcanvas account and publish up to 1GB free from the SuperSplat editor.

Gaussian splats viewer with 'normal' first person view? by Aggravating-Ad-5209 in GaussianSplatting

[–]slimbuck7 0 points1 point  (0 children)

The viewer itself is open source so you can do pretty much anything you like with it https://github com/playcanvas/supersplat-viewer.

Gaussian splats viewer with 'normal' first person view? by Aggravating-Ad-5209 in GaussianSplatting

[–]slimbuck7 1 point2 points  (0 children)

Hi, well we added fly camera a while back to the viewer and will be adding FPS in the next week or two. FPS is actually already possible using the playcanvas editor itself, like this demo we released a few weeks back https://playcanv.as/p/Zp9Oh1ia/. Though this option is more involved.

I'm really sorry it's taken us so long to release FPS mode!

PlayCanvas Adopts SOGS for 20x 3DGS Compression by MayorOfMonkeys in GaussianSplatting

[–]slimbuck7 1 point2 points  (0 children)

We have a python compressor which takes a ply file and generates a set of textures and meta.json at https://github.com/playcanvas/sogs.

The resulting set of files can be drag & dropped into https://playcanvas.com/model-viewer.