CCOSerika
CCOSerika
I met the same problem. Have u solved it?
Perhaps I found the key. It is caused by two lines of code in data_loader [here](https://github.com/VITA-Group/GNT/blob/main/gnt/data_loaders/nerf_synthetic.py#L107). ``` rgb = rgb[..., [-1]] * rgb[..., :3] + 1 - rgb[..., [-1]] src_rgb...
Great appreciation for ur kindness. I get it and have solved the issue. Congratulations on such an excellent work. Next I'm going to optimize the rendering time. Hope share with...
Hi, author. I run colmap and the following code to generate 'cameras.npz'. ``` intrin_mat = np.array([ [fx, 0, cx], [ 0, fy, cy], [ 0, 0, 1] ]) intrin_mat[0, 2]...
Hi, author. I've solved the issue above and the extracted mesh become no more confusing during training. But the mesh I get seems to be incorrect and I meet "RecursionError:...
BTW, I noticed that the train and test datasets have different format. So how to create test dataset from train dataset. I use following code but failed. ``` def cal_scale_mat(img_hw,...
I realized it by using 4-channel png images. Remove the bkgd and set alpha of the bkgd area to zero.
Replace it with ``` ind_t = np.argmax(weights_b, axis=-1) ind = np.expand_dims(ind_t, axis=-1) #[N,4,1] ```
> Hi, looks like you at least get the real360 scene working, I have been struggling to even start stage1 for it. May I ask your system config and package...
Commenting it out is okey. Besides, some code in stage3 needs to be modified, maybe so.