In the README.md guide it states that the transforms.json file can be used with Instant NGP and NeRFStudio, but using it directly with ns-train in NeRFStudio produces the following error:
FileNotFoundError: [Errno 2] No such file or directory: '<path_to_output_dir>/output_rendering/rendering_0000'
It seems that the paths in transforms.json are missing their extensions. save_image returns the filename without the extension. The only place in the source that uses this return value is save_seen_trajectory_renderings. Perhaps it can be modified to return the filename with extension?
In the
README.md
guide it states that thetransforms.json
file can be used with Instant NGP and NeRFStudio, but using it directly withns-train
in NeRFStudio produces the following error:It seems that the paths in
transforms.json
are missing their extensions.save_image
returns the filename without the extension. The only place in the source that uses this return value issave_seen_trajectory_renderings
. Perhaps it can be modified to return the filename with extension?