This commit is contained in:
guanjunwu 2023-12-02 14:15:08 +08:00
commit 4addef649b
7 changed files with 598 additions and 5 deletions

3
.gitmodules vendored
View File

@ -4,6 +4,9 @@
[submodule "submodules/diff-gaussian-rasterization"] [submodule "submodules/diff-gaussian-rasterization"]
path = submodules/diff-gaussian-rasterization path = submodules/diff-gaussian-rasterization
url = https://github.com/graphdeco-inria/diff-gaussian-rasterization url = https://github.com/graphdeco-inria/diff-gaussian-rasterization
[submodule "submodules/depth-diff-gaussian-rasterization"]
path = submodules/depth-diff-gaussian-rasterization
url = https://github.com/ingra14m/depth-diff-gaussian-rasterization
[submodule "SIBR_viewers"] [submodule "SIBR_viewers"]
path = SIBR_viewers path = SIBR_viewers
url = https://gitlab.inria.fr/sibr/sibr_core url = https://gitlab.inria.fr/sibr/sibr_core

585
4DGaussians.ipynb Normal file

File diff suppressed because one or more lines are too long

View File

@ -73,7 +73,7 @@ WITHOUT PRIOR AND EXPLICIT CONSENT OF LICENSORS. YOU MUST CONTACT INRIA FOR ANY
UNAUTHORIZED USE: stip-sophia.transfert@inria.fr . ANY SUCH ACTION WILL UNAUTHORIZED USE: stip-sophia.transfert@inria.fr . ANY SUCH ACTION WILL
CONSTITUTE A FORGERY. THIS *SOFTWARE* IS PROVIDED "AS IS" WITHOUT ANY WARRANTIES CONSTITUTE A FORGERY. THIS *SOFTWARE* IS PROVIDED "AS IS" WITHOUT ANY WARRANTIES
OF ANY NATURE AND ANY EXPRESS OR IMPLIED WARRANTIES, WITH REGARDS TO COMMERCIAL OF ANY NATURE AND ANY EXPRESS OR IMPLIED WARRANTIES, WITH REGARDS TO COMMERCIAL
USE, PROFESSIONNAL USE, LEGAL OR NOT, OR OTHER, OR COMMERCIALISATION OR USE, PROFESSIONAL USE, LEGAL OR NOT, OR OTHER, OR COMMERCIALISATION OR
ADAPTATION. UNLESS EXPLICITLY PROVIDED BY LAW, IN NO EVENT, SHALL INRIA OR THE ADAPTATION. UNLESS EXPLICITLY PROVIDED BY LAW, IN NO EVENT, SHALL INRIA OR THE
AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE

View File

@ -158,4 +158,4 @@ Some insights about neural voxel grids and dynamic scenes reconstruction origina
year = {2022}, year = {2022},
booktitle = {SIGGRAPH Asia 2022 Conference Papers} booktitle = {SIGGRAPH Asia 2022 Conference Papers}
} }
``` ```

View File

@ -7,4 +7,4 @@ argparse
lpips lpips
plyfile plyfile
pytorch_msssim pytorch_msssim
open3d open3d

View File

@ -242,7 +242,7 @@ def generateCamerasFromTransforms(path, template_transformsfile, extension, maxt
im_data = np.array(image.convert("RGBA")) im_data = np.array(image.convert("RGBA"))
image = PILtoTorch(image,(800,800)) image = PILtoTorch(image,(800,800))
break break
# format infomation # format information
for idx, (time, poses) in enumerate(zip(render_times,render_poses)): for idx, (time, poses) in enumerate(zip(render_times,render_poses)):
time = time/maxtime time = time/maxtime
matrix = np.linalg.inv(np.array(poses)) matrix = np.linalg.inv(np.array(poses))
@ -640,6 +640,10 @@ sceneLoadTypeCallbacks = {
"Blender" : readNerfSyntheticInfo, "Blender" : readNerfSyntheticInfo,
"dynerf" : readdynerfInfo, "dynerf" : readdynerfInfo,
"nerfies": readHyperDataInfos, # NeRFies & HyperNeRF dataset proposed by [https://github.com/google/hypernerf/releases/tag/v0.1] "nerfies": readHyperDataInfos, # NeRFies & HyperNeRF dataset proposed by [https://github.com/google/hypernerf/releases/tag/v0.1]
<<<<<<< HEAD
"PanopticSports" : readPanopticSportsinfos "PanopticSports" : readPanopticSportsinfos
} }
=======
}
>>>>>>> 6433420eb1f0463278e6800c0c604398f9245208

1
submodules/simple-knn Submodule

@ -0,0 +1 @@
Subproject commit 44f764299fa305faf6ec5ebd99939e0508331503