-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
12 changed files
with
57 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,11 @@ | ||
pub mod cloud_3d; | ||
pub mod cloud_4d; | ||
pub mod cloud_4d_hierarchy; | ||
// TODO: move all format specific code here (e.g. rand, packed) | ||
|
||
pub mod planar_3d; | ||
pub mod planar_3d_chunked; | ||
pub mod planar_3d_lod; | ||
pub mod planar_3d_quantized; | ||
pub mod planar_3d_spz; | ||
pub mod planar_4d; | ||
pub mod planar_4d_hierarchy; | ||
pub mod planar_4d_quantized; | ||
pub mod spacetime; |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
// https://github.com/oppo-us-research/SpacetimeGaussians | ||
|
||
|
||
// property float x | ||
// property float y | ||
// property float z | ||
// property float trbf_center | ||
// property float trbf_scale | ||
// property float nx | ||
// property float ny | ||
// property float nz | ||
// property float motion_0 | ||
|
||
// property float motion_2 | ||
// property float motion_3 | ||
// property float motion_4 | ||
// property float motion_5 | ||
// property float motion_6 | ||
// property float motion_7 | ||
// property float motion_8 | ||
// property float f_dc_0 | ||
// property float f_dc_1 | ||
// property float f_dc_2 | ||
// property float opacity | ||
// property float scale_0 | ||
// property float scale_1 | ||
// property float scale_2 | ||
// property float rot_0 | ||
// property float rot_1 | ||
// property float rot_2 | ||
// property float rot_3 | ||
// property float omega_0 | ||
// property float omega_1 | ||
// property float omega_2 | ||
// property float omega_3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters