├── .gitignore ├── README.md ├── octomap_world ├── CMakeLists.txt ├── include │ └── octomap_world │ │ ├── octomap_manager.h │ │ └── octomap_world.h ├── package.xml └── src │ ├── octomap_manager.cc │ ├── octomap_manager_node.cc │ └── octomap_world.cc ├── volumetric_map_base ├── CMakeLists.txt ├── include │ └── volumetric_map_base │ │ ├── point_weighing.h │ │ └── world_base.h ├── package.xml └── src │ └── world_base.cc ├── volumetric_mapping ├── CMakeLists.txt └── package.xml └── volumetric_msgs ├── CMakeLists.txt ├── package.xml └── srv ├── GetChangedPoints.srv ├── LoadMap.srv ├── SaveMap.srv ├── SetBoxOccupancy.srv └── SetDisplayBounds.srv /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethz-asl/volumetric_mapping/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethz-asl/volumetric_mapping/HEAD/README.md -------------------------------------------------------------------------------- /octomap_world/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethz-asl/volumetric_mapping/HEAD/octomap_world/CMakeLists.txt -------------------------------------------------------------------------------- /octomap_world/include/octomap_world/octomap_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethz-asl/volumetric_mapping/HEAD/octomap_world/include/octomap_world/octomap_manager.h -------------------------------------------------------------------------------- /octomap_world/include/octomap_world/octomap_world.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethz-asl/volumetric_mapping/HEAD/octomap_world/include/octomap_world/octomap_world.h -------------------------------------------------------------------------------- /octomap_world/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethz-asl/volumetric_mapping/HEAD/octomap_world/package.xml -------------------------------------------------------------------------------- /octomap_world/src/octomap_manager.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethz-asl/volumetric_mapping/HEAD/octomap_world/src/octomap_manager.cc -------------------------------------------------------------------------------- /octomap_world/src/octomap_manager_node.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethz-asl/volumetric_mapping/HEAD/octomap_world/src/octomap_manager_node.cc -------------------------------------------------------------------------------- /octomap_world/src/octomap_world.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethz-asl/volumetric_mapping/HEAD/octomap_world/src/octomap_world.cc -------------------------------------------------------------------------------- /volumetric_map_base/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethz-asl/volumetric_mapping/HEAD/volumetric_map_base/CMakeLists.txt -------------------------------------------------------------------------------- /volumetric_map_base/include/volumetric_map_base/point_weighing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethz-asl/volumetric_mapping/HEAD/volumetric_map_base/include/volumetric_map_base/point_weighing.h -------------------------------------------------------------------------------- /volumetric_map_base/include/volumetric_map_base/world_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethz-asl/volumetric_mapping/HEAD/volumetric_map_base/include/volumetric_map_base/world_base.h -------------------------------------------------------------------------------- /volumetric_map_base/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethz-asl/volumetric_mapping/HEAD/volumetric_map_base/package.xml -------------------------------------------------------------------------------- /volumetric_map_base/src/world_base.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethz-asl/volumetric_mapping/HEAD/volumetric_map_base/src/world_base.cc -------------------------------------------------------------------------------- /volumetric_mapping/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethz-asl/volumetric_mapping/HEAD/volumetric_mapping/CMakeLists.txt -------------------------------------------------------------------------------- /volumetric_mapping/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethz-asl/volumetric_mapping/HEAD/volumetric_mapping/package.xml -------------------------------------------------------------------------------- /volumetric_msgs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethz-asl/volumetric_mapping/HEAD/volumetric_msgs/CMakeLists.txt -------------------------------------------------------------------------------- /volumetric_msgs/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethz-asl/volumetric_mapping/HEAD/volumetric_msgs/package.xml -------------------------------------------------------------------------------- /volumetric_msgs/srv/GetChangedPoints.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethz-asl/volumetric_mapping/HEAD/volumetric_msgs/srv/GetChangedPoints.srv -------------------------------------------------------------------------------- /volumetric_msgs/srv/LoadMap.srv: -------------------------------------------------------------------------------- 1 | string file_path 2 | --- 3 | -------------------------------------------------------------------------------- /volumetric_msgs/srv/SaveMap.srv: -------------------------------------------------------------------------------- 1 | string file_path 2 | --- 3 | -------------------------------------------------------------------------------- /volumetric_msgs/srv/SetBoxOccupancy.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethz-asl/volumetric_mapping/HEAD/volumetric_msgs/srv/SetBoxOccupancy.srv -------------------------------------------------------------------------------- /volumetric_msgs/srv/SetDisplayBounds.srv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethz-asl/volumetric_mapping/HEAD/volumetric_msgs/srv/SetDisplayBounds.srv --------------------------------------------------------------------------------