Open wooseokS opened 1 month ago
Do use the batch_size rasterization? It may cause info['gaussian_ids'] < info['means2D'], as the former just records which gaussian primitives have been rasterized in all batch cameras.
Oh, I see. So info["gaussian_ids"]
means the id of gaussians which will be rendered in the batch cameras. Is it right?
Hi, thanks for your hard works.
I'm confusing exactly what
info["gaussian_ids"]
means whenpacked=True
.I thought that a key
"gaussian_ids"
means the IDs of individual 3D Gaussians, so that we can easily access on the attributes of Gaussians.But when I ran this code right after the
step_post_backward
process,It appears that the two tensor's sizes are different. (I expected
ids.size(dim=0) == self.splats['means'].size(dim=0)
)Could you explain me about what exactly the
"gaussian_ids"
means in packed mode?I appreciate for your kindness.