PRBonn / SHINE_mapping

🌟 SHINE-Mapping: Large-Scale 3D Mapping Using Sparse Hierarchical Implicit Neural Representations (ICRA 2023)
MIT License
442 stars 31 forks source link

octree issue #35

Closed whwh747 closed 2 months ago

whwh747 commented 3 months ago

Thank you for your excellent work. In an octree, does each node correspond to a voxel with voxel embeddings on all eight vertices, and is multiresolution achieved by connecting the embeddings of leaf nodes and their ancestor nodes?

StarryN commented 2 months ago

Hello @whwh747. Yes, you are right. We sum up the interpolated features from different voxel levels to fuse the multiresolution information. This is implemented by maintaining one hash table in each voxel level rather than searching in a tree structure.

whwh747 commented 2 months ago

i got it,thank you!