NVlabs / InstantSplat

InstantSplat: Sparse-view SfM-free Gaussian Splatting in Seconds
https://instantsplat.github.io/
Other
861 stars 53 forks source link

init_test_pose saves None when the N_VIEWS=12 in run_train_eval.sh #8

Closed Master-cai closed 3 months ago

Master-cai commented 3 months ago

Thanks for your wonderful work. When I have the following setting, the test pose can not be saved and the render failed.

It seems the strategy obtaining the initial test poses has some bug when the N_VIEWS=12.

Btw, it seems that no pose metrics are recorded when running run_train_eval.sh, can you provide some guide to get the pose metrics reported in your paper?

Thanks!

DATASETS=(
    Tanks
    # MVimgNet
    )

SCENES=(
    # Family
    # Barn
    # Francis
    Horse
    # Ignatius
    # santorini
    # Ballroom
    # Church
    # Museum
    )

N_VIEWS=(
    # 3
    # 6
    # 5
    # 9
    12
    # 24
    )

cc @zhiwenfan @changh95 @BorisIvanovic

murmurelo111 commented 3 months ago

image

Hello, I reviewed the repository code and made changes to this section (init_test_pose.py). After that, it ran smoothly.

Master-cai commented 3 months ago

@murmurelo111 thank you so much!