Gaussian-Activated-Radiance-Fields
Gaussian-Activated-Radiance-Fields copied to clipboard
An issue regarding BLEFF dataloader
Thanks for releasing the code. In your BLEFF code, c2w data is read from gt_metas.json file. However, some scenes have weird c2w data in that file (for example, bed scene has corresponding c2w data).
[
0.14657878875732422,
-0.0010548068676143885,
-0.2047007977962494,
-1.303330659866333
],
[
-0.20465244352817535,
-0.00637618824839592,
-0.14651136100292206,
-0.7851966619491577
],
[
-0.004570294171571732,
0.25168848037719727,
-0.004569551907479763,
1.4914559125900269
],
[
0.0,
0.0,
0.0,
1.0
]
If you check whether it is valid (determinant is 1 & orthonormal), you will notice that it is not valid. In contrast, it seems that poses_bounds.npy has valid data (The official implementation of nerfmm also uses that file)