NVIDIA 3D Gaussian Splat to USD Converter
Project description
Omniverse Gaussian Splat Converter
A pip-installable Python package for converting 3D Gaussian Splat data (PLY and SPZ formats) to USD
using the ParticleField3DGaussianSplat schema.
Installation
pip install omniverse-gsplat-converter
For USD support (if not already installed):
pip install omniverse-gsplat-converter[usd]
Usage
Command Line
# Convert a PLY file to USDZ
omni_gsplat_convert -i input.ply -o output.usdz
# Convert an SPZ file to USDA with Z-up axis
omni_gsplat_convert -i input.spz -o output.usda --up-axis Z
# Generate spherical harmonics and scales from raw PLY
omni_gsplat_convert -i input.ply -o output.usdz --generateSh --generateScales
You can also run via python -m:
python -m omniverse_gsplat_converter -i input.ply -o output.usdz
Python API
from omniverse_gsplat_converter import read_ply, read_spz, write_gaussian_splat_usd
# Read a PLY file
splat_data = read_ply("scene.ply")
# Write to USD
write_gaussian_splat_usd(splat_data, "scene.usdz", source_file="scene.ply")
# Read an SPZ file
splat_data = read_spz("scene.spz")
# Write to USD with options
write_gaussian_splat_usd(
splat_data,
"scene.usda",
source_file="scene.spz",
up_axis="Z",
rotation_degrees=(90.0, 0.0, 0.0),
)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
No source distribution files available for this release.See tutorial on generating distribution archives.
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file omniverse_gsplat_converter-0.1.4-py3-none-any.whl.
File metadata
- Download URL: omniverse_gsplat_converter-0.1.4-py3-none-any.whl
- Upload date:
- Size: 20.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
19588439c9b65275f42b8f261543d2038d0c5f755a1eb0f6ef0045451350c418
|
|
| MD5 |
a6e5dc9a111f77a7977d07c593794af1
|
|
| BLAKE2b-256 |
b7404108b52dd979ea8f7ef5e570a373d40f85b7143ce69746e99d1e7c6d5c6c
|