Skip to content

Commit babf577

Browse files
authored
Fix call to detect ODM reconstruction file (nerfstudio-project#3018)
1 parent a64026f commit babf577

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

nerfstudio/process_data/odm_utils.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ def cameras2nerfds(
136136
shots_dict = {}
137137
reconstruction = None
138138

139-
if reconstruction_file.exists:
139+
if reconstruction_file.exists():
140140
reconstruction = get_reconstruction(reconstruction_file)
141141
shots = reconstruction.get("shots", [])
142142
for filename in shots:

0 commit comments

Comments
 (0)