├── .gitattributes ├── .gitignore ├── CMakeLists.txt ├── README.md ├── msvc ├── octree2svo.vcxproj ├── octree2svo.vcxproj.filters ├── svo_convert.vcxproj ├── svo_convert.vcxproj.filters └── svo_tools.sln └── src ├── octree2svo ├── DataPoint.h ├── Node.h ├── build_linux.sh ├── file_tools.h ├── main.cpp └── octree_io.h └── svo_convert ├── DataPoint.h ├── Node.h ├── OctreeBuilder.cpp ├── OctreeBuilder.h ├── build_svo_convert.sh ├── geo_primitives.h ├── intersection.h ├── main.cpp ├── mesh_operations.h ├── morton.h ├── octree2svo.h ├── svo_convert.h ├── svo_convert_util.h ├── voxelization.cpp └── voxelization.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forceflow/svo_tools/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forceflow/svo_tools/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forceflow/svo_tools/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forceflow/svo_tools/HEAD/README.md -------------------------------------------------------------------------------- /msvc/octree2svo.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forceflow/svo_tools/HEAD/msvc/octree2svo.vcxproj -------------------------------------------------------------------------------- /msvc/octree2svo.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forceflow/svo_tools/HEAD/msvc/octree2svo.vcxproj.filters -------------------------------------------------------------------------------- /msvc/svo_convert.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forceflow/svo_tools/HEAD/msvc/svo_convert.vcxproj -------------------------------------------------------------------------------- /msvc/svo_convert.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forceflow/svo_tools/HEAD/msvc/svo_convert.vcxproj.filters -------------------------------------------------------------------------------- /msvc/svo_tools.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forceflow/svo_tools/HEAD/msvc/svo_tools.sln -------------------------------------------------------------------------------- /src/octree2svo/DataPoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forceflow/svo_tools/HEAD/src/octree2svo/DataPoint.h -------------------------------------------------------------------------------- /src/octree2svo/Node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forceflow/svo_tools/HEAD/src/octree2svo/Node.h -------------------------------------------------------------------------------- /src/octree2svo/build_linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forceflow/svo_tools/HEAD/src/octree2svo/build_linux.sh -------------------------------------------------------------------------------- /src/octree2svo/file_tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forceflow/svo_tools/HEAD/src/octree2svo/file_tools.h -------------------------------------------------------------------------------- /src/octree2svo/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forceflow/svo_tools/HEAD/src/octree2svo/main.cpp -------------------------------------------------------------------------------- /src/octree2svo/octree_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forceflow/svo_tools/HEAD/src/octree2svo/octree_io.h -------------------------------------------------------------------------------- /src/svo_convert/DataPoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forceflow/svo_tools/HEAD/src/svo_convert/DataPoint.h -------------------------------------------------------------------------------- /src/svo_convert/Node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forceflow/svo_tools/HEAD/src/svo_convert/Node.h -------------------------------------------------------------------------------- /src/svo_convert/OctreeBuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forceflow/svo_tools/HEAD/src/svo_convert/OctreeBuilder.cpp -------------------------------------------------------------------------------- /src/svo_convert/OctreeBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forceflow/svo_tools/HEAD/src/svo_convert/OctreeBuilder.h -------------------------------------------------------------------------------- /src/svo_convert/build_svo_convert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forceflow/svo_tools/HEAD/src/svo_convert/build_svo_convert.sh -------------------------------------------------------------------------------- /src/svo_convert/geo_primitives.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forceflow/svo_tools/HEAD/src/svo_convert/geo_primitives.h -------------------------------------------------------------------------------- /src/svo_convert/intersection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forceflow/svo_tools/HEAD/src/svo_convert/intersection.h -------------------------------------------------------------------------------- /src/svo_convert/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forceflow/svo_tools/HEAD/src/svo_convert/main.cpp -------------------------------------------------------------------------------- /src/svo_convert/mesh_operations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forceflow/svo_tools/HEAD/src/svo_convert/mesh_operations.h -------------------------------------------------------------------------------- /src/svo_convert/morton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forceflow/svo_tools/HEAD/src/svo_convert/morton.h -------------------------------------------------------------------------------- /src/svo_convert/octree2svo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forceflow/svo_tools/HEAD/src/svo_convert/octree2svo.h -------------------------------------------------------------------------------- /src/svo_convert/svo_convert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forceflow/svo_tools/HEAD/src/svo_convert/svo_convert.h -------------------------------------------------------------------------------- /src/svo_convert/svo_convert_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forceflow/svo_tools/HEAD/src/svo_convert/svo_convert_util.h -------------------------------------------------------------------------------- /src/svo_convert/voxelization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forceflow/svo_tools/HEAD/src/svo_convert/voxelization.cpp -------------------------------------------------------------------------------- /src/svo_convert/voxelization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Forceflow/svo_tools/HEAD/src/svo_convert/voxelization.h --------------------------------------------------------------------------------