VladimirYugay/Gaussian-SLAM

Is each sample point seeded with two gaussians?

DeepDuke opened this issue · 2 comments

image

Thanks for your great work! I have two questions.

In the section of Building Sub-maps Progressively, it's said

For each sampled point, we seed two gaussians

Where is the corresponding code ? I only saw one gaussian is seeded.

BTW, what does features_dc and features_rest mean in gaussian model? TKS!

Hey there,

Thanks for your interest in our work.

  1. The code we released is slightly different from the paper on arxiv. Arxiv is a little bit outdated. In the current implementation, we seed only 1 Gaussian - as you said
  2. Features dc and rest relate to the spherical harmonics used to describe the color. We don't go into the details in the paper since it's well described in the original Gaussian splatting paper. For example, this Github issue answers your exact question.

Thanks for your detailed answer!