Anttwo / SuGaR

[CVPR 2024] Official PyTorch implementation of SuGaR: Surface-Aligned Gaussian Splatting for Efficient 3D Mesh Reconstruction and High-Quality Mesh Rendering
https://anttwo.github.io/sugar/
Other
2.36k stars 182 forks source link

./outputcameras.json missing | Getting error in second step after Saving Gaussians and Eval Train #36

Open DiamondGlassDrill opened 11 months ago

DiamondGlassDrill commented 11 months ago

load_gs_cameras with open(gs_output_path + 'cameras.json') as f: FileNotFoundError: [Errno 2] No such file or directory: './outputcameras.json

python train.py -s ./data/playroom -c ./output -r sdf

cameras.json is in the output path. But I cannot find ./outputcameras.json as well.

cubantonystark commented 11 months ago

try:

with open(gs_output_path + '/cameras.json') as f:

DiamondGlassDrill commented 11 months ago

@cubantonystark solved it