@manycore/aholo-splat-transform 1.2.7-alpha.0 → 1.2.8
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/CHANGELOG.md +11 -0
- package/COPYRIGHT.md +17 -0
- package/README.md +9 -3
- package/THIRD_PARTY_LICENSES.txt +1373 -0
- package/bin/cli.js +3 -3
- package/dist/SplatData.js +6 -12
- package/dist/file/esz.d.ts +11 -0
- package/dist/file/esz.js +322 -0
- package/dist/file/index.d.ts +1 -0
- package/dist/file/index.js +1 -0
- package/dist/file/ksplat.js +4 -5
- package/dist/file/lcc.js +5 -4
- package/dist/file/ply.js +8 -6
- package/dist/file/sog.js +8 -18
- package/dist/file/spz.d.ts +4 -1
- package/dist/file/spz.js +358 -175
- package/dist/native/cpp/bin/linux/binding.node +0 -0
- package/dist/native/cpp/bin/windows/binding.node +0 -0
- package/dist/native/index.js +4 -3
- package/dist/tasks/ReadTask.d.ts +1 -0
- package/dist/tasks/ReadTask.js +2 -2
- package/dist/tasks/WriteTask.d.ts +1 -0
- package/dist/tasks/WriteTask.js +6 -6
- package/dist/utils/BufferReader.js +2 -4
- package/dist/utils/Logger.js +4 -2
- package/dist/utils/StreamChunkDecoder.js +1 -6
- package/dist/utils/k-means.js +0 -9
- package/dist/utils/math.js +7 -12
- package/dist/utils/splat.d.ts +3 -2
- package/dist/utils/splat.js +12 -3
- package/dist/utils/voxel/common.js +10 -28
- package/dist/utils/voxel/gpu-dilation.js +3 -12
- package/package.json +13 -6
package/CHANGELOG.md
CHANGED
package/COPYRIGHT.md
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
# Copyright and Use Notice
|
|
2
|
+
|
|
3
|
+
Copyright (c) Manycore. All rights reserved.
|
|
4
|
+
|
|
5
|
+
This notice applies to `@manycore/aholo-splat-transform`, including the distributed command-line tool, binaries, package files, and related materials (the "Tool").
|
|
6
|
+
|
|
7
|
+
The Tool is proprietary and is not open source. No open-source license or source-code license is granted for the Tool itself.
|
|
8
|
+
|
|
9
|
+
You may use the Tool, as distributed by Manycore, to generate, transform, process, or export content for any purpose, including commercial and non-commercial purposes. Manycore does not claim ownership of content solely because it was generated, transformed, processed, or exported with the Tool.
|
|
10
|
+
|
|
11
|
+
You are responsible for ensuring that you have the necessary rights to any input content, assets, data, or materials used with the Tool.
|
|
12
|
+
|
|
13
|
+
You may not copy, redistribute, sublicense, sell, rent, host, mirror, repackage, publish, or otherwise make the Tool available to any third party, whether modified or unmodified, except with prior written permission from Manycore.
|
|
14
|
+
|
|
15
|
+
Third-party components included with or used by the Tool remain subject to their respective license terms. See `THIRD_PARTY_LICENSES.txt` for third-party license notices.
|
|
16
|
+
|
|
17
|
+
The Tool is provided as is, without warranties or support obligations unless separately agreed in writing.
|
package/README.md
CHANGED
|
@@ -4,15 +4,17 @@ A 3DGS modifier used by aholo
|
|
|
4
4
|
|
|
5
5
|
## Requirement
|
|
6
6
|
|
|
7
|
-
- node >=
|
|
7
|
+
- node >= 22.22.1
|
|
8
8
|
- system
|
|
9
|
-
- windows: windows 22H2+, D3D12 or Vulkan compatible GPU(When use GPU features, dedicated GPU for better performance)
|
|
10
|
-
- linux: glibc >=2.34, libstdc++ >= 3.4.30, Vulkan compatible GPU(When use GPU features, dedicated GPU for better performance)
|
|
9
|
+
- windows: windows 22H2+, x86_64, D3D12 or Vulkan compatible GPU(When use GPU features, dedicated GPU for better performance)
|
|
10
|
+
- linux: x86_64, glibc >= 2.34, libstdc++ >= 3.4.30, Vulkan compatible GPU(When use GPU features, dedicated GPU for better performance)
|
|
11
11
|
- osx: Not Supported
|
|
12
12
|
|
|
13
13
|
## Usage
|
|
14
14
|
|
|
15
15
|
```bash
|
|
16
|
+
npm install @manycore/aholo-splat-transform -g
|
|
17
|
+
|
|
16
18
|
splat-transform --help
|
|
17
19
|
|
|
18
20
|
Execute a task pipeline from configuration file
|
|
@@ -31,3 +33,7 @@ Commands:
|
|
|
31
33
|
lod:auto [options] <input> <output> Generate auto-lod for gaussian splat file
|
|
32
34
|
lod:auto-chunk [options] <input> <output> Generate auto-chunk-lod for gaussian splat file
|
|
33
35
|
```
|
|
36
|
+
|
|
37
|
+
## CopyRight
|
|
38
|
+
|
|
39
|
+
[CopyRight](./COPYRIGHT.md)
|