@playcanvas/splat-transform 0.4.1 → 0.5.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 +4 -2
- package/dist/index.mjs +86405 -325
- package/dist/index.mjs.map +1 -1
- package/package.json +10 -7
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
#
|
|
1
|
+
# SplatTransform - 3D Gaussian Splat Converter
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
SplatTransform is an open source CLI tool for reading gaussian splat PLY files and writing them to PLY, Compressed PLY, CSV, and SOGS format.
|
|
4
4
|
|
|
5
5
|
Multiple files may be combined and transformed before being written to the output.
|
|
6
6
|
|
|
@@ -55,6 +55,8 @@ Actions can be repeated and applied in any order:
|
|
|
55
55
|
-w, --overwrite Overwrite output file if it already exists
|
|
56
56
|
-h, --help Show help and exit
|
|
57
57
|
-v, --version Show version and exit
|
|
58
|
+
-g, --no-gpu Disable gpu when compressing spherical harmonics.
|
|
59
|
+
-i, --iterations <number> Specify the number of iterations when compressing spherical harmonics. More iterations generally lead to better results. Default is 10.
|
|
58
60
|
```
|
|
59
61
|
|
|
60
62
|
## Examples
|