-
Notifications
You must be signed in to change notification settings - Fork 64
Description
I've run the released code. During training, the anchors will be adjusted adaptively. However, the anchors in the generated PLY file can not be constructed as an octree because of ``children-node duplication''. I've read the logic of anchor_growing function defined in class `GaussianModel`. There're two stages of each `cur_level`. The first stage is to generate new anchors for level `cur_level`, and the second one generates anchors for level `cur_level + 1`, resulting in variables `candidate_anchor` and `candidate_anchor_ds` respectively. However, for `candidate_anchor_ds`, the `get_remove_duplication` should consider its duplication between `candidate_anchor_ds` with the anchors of `cur_level + 1` (as they eventually will be assigned a level value of `cur_level + 1`), while in the released code, is `cur_level`. I wonder the reason of setting the code like this.