@playcanvas/splat-transform 0.13.1 → 0.14.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -11,8 +11,8 @@
11
11
 
12
12
  SplatTransform is an open source CLI tool for converting and editing Gaussian splats. It can:
13
13
 
14
- 📥 Read PLY, Compressed PLY, SOG, SPLAT, KSPLAT and SPZ formats
15
- 📤 Write PLY, Compressed PLY, SOG, CSV and HTML viewer formats
14
+ 📥 Read PLY, Compressed PLY, SOG, SPLAT, KSPLAT, SPZ and LCC formats
15
+ 📤 Write PLY, Compressed PLY, SOG, CSV, HTML Viewer and LOD (streaming) formats
16
16
  🔗 Merge multiple splats
17
17
  🔄 Apply transformations to input splats
18
18
  🎛️ Filter out Gaussians or spherical harmonic bands
@@ -44,6 +44,7 @@ splat-transform [GLOBAL] input [ACTIONS] ... output [ACTIONS]
44
44
  | `.sog` | ✅ | ✅ | Bundled super-compressed format (recommended) |
45
45
  | `meta.json` | ✅ | ✅ | Unbundled super-compressed format (accompanied by `.webp` textures) |
46
46
  | `.compressed.ply` | ✅ | ✅ | Compressed PLY format (auto-detected and decompressed on read) |
47
+ | `.lcc` | ✅ | ❌ | LCC file format (XGRIDS) |
47
48
  | `.ksplat` | ✅ | ❌ | Compressed splat format (mkkellogg format) |
48
49
  | `.splat` | ✅ | ❌ | Compressed splat format (antimatter15 format) |
49
50
  | `.spz` | ✅ | ❌ | Compressed splat format (Niantic format) |
@@ -77,6 +78,9 @@ Actions can be repeated and applied in any order:
77
78
  -c, --cpu Use CPU for SOG spherical harmonic compression
78
79
  -i, --iterations <n> Iterations for SOG SH compression (more=better). Default: 10
79
80
  -E, --viewer-settings <settings.json> HTML viewer settings JSON file
81
+ -O, --lod-select <n,n,...> Comma-separated LOD levels to read from LCC input
82
+ -C, --lod-chunk-count <n> Approx number of Gaussians per LOD chunk in K. Default: 512
83
+ -X, --lod-chunk-extent <n> Approx size of an LOD chunk in world units (m). Default: 16
80
84
  ```
81
85
 
82
86
  > [!NOTE]