Closed EchoTHChen closed 2 years ago
Hi, for rendering a query image, we will use 8 neighboring reference images. In order to construct cost volume on each reference image, we will further select source images whose poses are neighboring to the reference image.
use_src_img
indicates how we select source images.
use_src_img=False
, then we will select source images from these 8 reference images. use_src_img=True
, we will select source images from all input images. In this case, we will include more than 8 images in computation. ref_cv_idx
indicates which images are used as source images for a specific reference image. ref_real_idx
indicates the selected 8 reference images for rendering the query image.Thanks!
Hello. This is a great work. But I meet some problem in understanding this code.
In dataset/train_dataset.py, there are some code I do not understand.
What do the src_imgs and ref_imgs mean respectively? Why do you directly assign the copy of ref_imgs_info to src_imgs_info?
And what do
ref_cv_idx
andref_real_idx
respectively mean?