Fast, templated, C++ Octree implementation

后端 未结 3 1267
抹茶落季
抹茶落季 2020-12-12 20:47

I\'ve been searching high and low (mostly on google) for a fast, efficient, templated (ie. with STL-like properties) octree implementation, without success. I want to use t

相关标签:
3条回答
  • 2020-12-12 21:29

    Check this one out: http://svn.pointclouds.org/pcl/trunk/octree/

    Updated link: https://github.com/PointCloudLibrary/pcl/tree/master/octree

    0 讨论(0)
  • 2020-12-12 21:38

    Also recently released: http://www.openvdb.org/

    A volume hierarchy format by Dreamworks.

    0 讨论(0)
  • 2020-12-12 21:48
    • http://nomis80.org/code/octree.html

      This is my favorite. It is GPL and has it's own homepage, so it's meant to be used by others. It has Doxygen documentation, and the authors are taking questions.

    • http://www.flipcode.com/archives/Octree_Implementation.shtml

      This one is not templated. It has more comments in the code than every other I've seen, so that might be more useful if you are trying to find out how octrees work.

    0 讨论(0)
提交回复
热议问题