donydchen / mvsplat

🌊 [ECCV'24] MVSplat: Efficient 3D Gaussian Splatting from Sparse Multi-View Images
https://donydchen.github.io/mvsplat
Other
498 stars 22 forks source link

How to generate `evaluation_index_re10k.json` and `evaluation_index_re10k_video.json`? #36

Closed thucz closed 2 weeks ago

thucz commented 2 weeks ago

I want to evaluate MvSplat on another dataset. I need to generate the evaluation index file. Could you tell me how to make it?

donydchen commented 2 weeks ago

Hi @thucz, thanks for your interest in our work.

You can generate evaluation_index_re10k.json by running:

python -m src.scripts.generate_evaluation_index \
data_loader.train.num_workers=0 \
data_loader.test.num_workers=0 \
data_loader.val.num_workers=0

By default, the generated index file will be saved to outputs/evaluation_index_re10k/evaluation_index.json. Then, you can generate the corresponding video index file by running:

python -m src.scripts.generate_video_evaluation_index \
--index_input=outputs/evaluation_index_re10k/evaluation_index.json \
--index_output=outputs/evaluation_index_re10k/evaluation_index_video.json
thucz commented 2 weeks ago

Thanks!