Merge pull request #1 from yzslab/main

fix FileNotFoundError when loading colmap sparse model
This commit is contained in:
Snosixtyboo 2023-07-10 10:12:20 +02:00 committed by GitHub
commit 5998454e5c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -154,9 +154,9 @@ def readColmapSceneInfo(path, images, eval, llffhold=8):
nerf_normalization = getNerfppNorm(train_cam_infos) nerf_normalization = getNerfppNorm(train_cam_infos)
ply_path = os.path.join(path, "sparse/0/points3d.ply") ply_path = os.path.join(path, "sparse/0/points3D.ply")
bin_path = os.path.join(path, "sparse/0/points3d.bin") bin_path = os.path.join(path, "sparse/0/points3D.bin")
txt_path = os.path.join(path, "sparse/0/points3d.txt") txt_path = os.path.join(path, "sparse/0/points3D.txt")
if not os.path.exists(ply_path): if not os.path.exists(ply_path):
print("Converting point3d.bin to .ply, will happen only the first time you open the scene.") print("Converting point3d.bin to .ply, will happen only the first time you open the scene.")
try: try: