We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 81db180 commit 1b85fb5Copy full SHA for 1b85fb5
nerfstudio/viewer_beta/render_panel.py
@@ -625,6 +625,7 @@ def _(event: viser.GuiEvent) -> None:
625
626
# now write the json file
627
json_outfile = datapath / "camera_paths" / f"{render_name_text.value}.json"
628
+ json_outfile.parent.mkdir(parents=True, exist_ok=True)
629
with open(json_outfile.absolute(), "w") as outfile:
630
json.dump(json_data, outfile)
631
# now show the command
0 commit comments