-
Notifications
You must be signed in to change notification settings - Fork 633
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
73 changed files
with
5,595 additions
and
133 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 5 additions & 0 deletions
5
doc/source/doxygen-docs/example-maps_voxelmap_from_tum_dataset.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
\page maps_voxelmap_from_tum_dataset Example: maps_voxelmap_from_tum_dataset | ||
|
||
![maps_voxelmap_from_tum_dataset screenshot](doc/source/images/maps_voxelmap_from_tum_dataset_screenshot.png) | ||
C++ example source code: | ||
\include maps_voxelmap_from_tum_dataset/test.cpp |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
\page maps_voxelmap_simple Example: maps_voxelmap_simple | ||
|
||
![maps_voxelmap_simple screenshot](doc/source/images/maps_voxelmap_simple_screenshot.png) | ||
C++ example source code: | ||
\include maps_voxelmap_simple/test.cpp |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
/* +------------------------------------------------------------------------+ | ||
| Mobile Robot Programming Toolkit (MRPT) | | ||
| https://www.mrpt.org/ | | ||
| | | ||
| Copyright (c) 2005-2023, Individual contributors, see AUTHORS file | | ||
| See: https://www.mrpt.org/Authors - All rights reserved. | | ||
| Released under BSD License. See: https://www.mrpt.org/License | | ||
+------------------------------------------------------------------------+ */ | ||
|
||
#pragma once | ||
|
||
#include <mrpt/maps/CVoxelMapOccupancyBase.h> | ||
|
||
namespace mrpt::obs | ||
{ | ||
class CObservationPointCloud; | ||
} | ||
|
||
namespace mrpt::maps | ||
{ | ||
/** Voxel contents for CVoxelMap | ||
*/ | ||
struct VoxelNodeOccupancy | ||
{ | ||
int8_t occupancy = 0; | ||
|
||
// ---- API expected by CVoxelMapOccupancyBase ---- | ||
int8_t& occupancyRef() { return occupancy; } | ||
const int8_t& occupancyRef() const { return occupancy; } | ||
}; | ||
|
||
/** | ||
* Log-odds sparse voxel map for cells containing only the *occupancy* of each | ||
* voxel. | ||
* | ||
* \ingroup mrpt_maps_grp | ||
*/ | ||
class CVoxelMap : public CVoxelMapOccupancyBase<VoxelNodeOccupancy> | ||
{ | ||
// This must be added to any CSerializable derived class: | ||
DEFINE_SERIALIZABLE(CVoxelMap, mrpt::maps) | ||
|
||
public: | ||
CVoxelMap( | ||
double resolution = 0.05, uint8_t inner_bits = 2, uint8_t leaf_bits = 3) | ||
: CVoxelMapOccupancyBase(resolution, inner_bits, leaf_bits) | ||
{ | ||
} | ||
~CVoxelMap(); | ||
|
||
MAP_DEFINITION_START(CVoxelMap) | ||
double resolution = 0.10; | ||
uint8_t inner_bits = 2; | ||
uint8_t leaf_bits = 3; | ||
mrpt::maps::TVoxelMap_InsertionOptions insertionOpts; | ||
mrpt::maps::TVoxelMap_LikelihoodOptions likelihoodOpts; | ||
MAP_DEFINITION_END(CVoxelMap) | ||
|
||
protected: | ||
bool internal_insertObservation( | ||
const mrpt::obs::CObservation& obs, | ||
const std::optional<const mrpt::poses::CPose3D>& robotPose = | ||
std::nullopt) override; | ||
bool internal_insertObservation_Pts( | ||
const mrpt::obs::CObservationPointCloud& obs, | ||
const std::optional<const mrpt::poses::CPose3D>& robotPose = | ||
std::nullopt); | ||
double internal_computeObservationLikelihood( | ||
const mrpt::obs::CObservation& obs, | ||
const mrpt::poses::CPose3D& takenFrom) const override; | ||
}; | ||
|
||
} // namespace mrpt::maps |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,132 @@ | ||
/* +------------------------------------------------------------------------+ | ||
| Mobile Robot Programming Toolkit (MRPT) | | ||
| https://www.mrpt.org/ | | ||
| | | ||
| Copyright (c) 2005-2023, Individual contributors, see AUTHORS file | | ||
| See: https://www.mrpt.org/Authors - All rights reserved. | | ||
| Released under BSD License. See: https://www.mrpt.org/License | | ||
+------------------------------------------------------------------------+ */ | ||
|
||
#pragma once | ||
|
||
#include <mrpt/maps/CMetricMap.h> | ||
#include <mrpt/obs/obs_frwds.h> | ||
#include <mrpt/opengl/COctoMapVoxels.h> | ||
#include <mrpt/opengl/CSetOfObjects.h> | ||
#include <mrpt/opengl/Scene.h> | ||
|
||
#include <cstdint> | ||
|
||
#include "bonxai/bonxai.hpp" | ||
|
||
namespace mrpt::maps | ||
{ | ||
/** An mrpt CMetricMap wrapper for Bonxai's VoxelMap container. | ||
* | ||
* Refer to Davide Faconti's [Bonxai | ||
* repository](https://github.com/facontidavide/Bonxai) for publication and | ||
* algorithm details, but in short, this is a sparse generic container for | ||
* voxels, not needing redimensioning when the map grows, and with efficient | ||
* insertion and update operations. | ||
* | ||
* Users normally use the derived classes, not this generic base template. | ||
* This base class implements all common aspects to CMetricMap that do not | ||
* depend on the specific contents to be stored at each voxel. | ||
* | ||
* No multi-threading protection is applied at all in the API. | ||
* | ||
* \sa CMetricMap, the example in "MRPT/samples/maps_voxelmap_simple", | ||
* \ingroup mrpt_maps_grp | ||
*/ | ||
template <typename node_t> | ||
class CVoxelMapBase : public mrpt::maps::CMetricMap | ||
{ | ||
public: | ||
using myself_t = CVoxelMapBase<node_t>; | ||
using voxel_node_t = node_t; | ||
|
||
/** Constructor, defines the resolution of the voxelmap | ||
* (length of each voxel side, in meters). | ||
*/ | ||
CVoxelMapBase( | ||
double resolution, uint8_t inner_bits = 2, uint8_t leaf_bits = 3) | ||
: m_impl(std::make_unique<Impl>(resolution, inner_bits, leaf_bits)) | ||
{ | ||
} | ||
virtual ~CVoxelMapBase() override = default; | ||
|
||
CVoxelMapBase(const CVoxelMapBase& o) : CVoxelMapBase(o.grid().resolution) | ||
{ | ||
*this = o; | ||
} | ||
CVoxelMapBase& operator=(const CVoxelMapBase& o) | ||
{ | ||
// grid() = o.grid(); | ||
THROW_EXCEPTION("Bonxai voxel grid copy not implemented"); | ||
return *this; | ||
} | ||
|
||
CVoxelMapBase(CVoxelMapBase&& o) : m_impl(std::move(o.m_impl)) {} | ||
CVoxelMapBase& operator=(CVoxelMapBase&& o) | ||
{ | ||
m_impl = std::move(o.m_impl); | ||
return *this; | ||
} | ||
|
||
const Bonxai::VoxelGrid<node_t>& grid() const { return m_impl->grid; } | ||
|
||
/** Returns a short description of the map. */ | ||
std::string asString() const override { return "Voxelmap"; } | ||
|
||
/** Returns a 3D object representing the map. | ||
* \sa renderingOptions | ||
*/ | ||
void getVisualizationInto(mrpt::opengl::CSetOfObjects& o) const override | ||
{ | ||
auto gl_obj = mrpt::opengl::COctoMapVoxels::Create(); | ||
this->getAsOctoMapVoxels(*gl_obj); | ||
o.insert(gl_obj); | ||
} | ||
|
||
/** Builds a renderizable representation of the octomap as a | ||
* mrpt::opengl::COctoMapVoxels object. | ||
* Implementation defined for each children class. | ||
* \sa renderingOptions | ||
*/ | ||
virtual void getAsOctoMapVoxels( | ||
mrpt::opengl::COctoMapVoxels& gl_obj) const = 0; | ||
|
||
virtual void saveMetricMapRepresentationToFile( | ||
const std::string& filNamePrefix) const override | ||
{ | ||
MRPT_START | ||
// Save as 3D Scene: | ||
{ | ||
mrpt::opengl::Scene scene; | ||
scene.insert(this->getVisualization()); | ||
const std::string fil = filNamePrefix + std::string("_3D.3Dscene"); | ||
scene.saveToFile(fil); | ||
} | ||
// Save binary data file? | ||
MRPT_END | ||
} | ||
|
||
protected: | ||
struct Impl | ||
{ | ||
Impl(double resolution, uint8_t inner_bits, uint8_t leaf_bits) | ||
: grid(resolution, inner_bits, leaf_bits), | ||
accessor(grid.createAccessor()) | ||
{ | ||
} | ||
Impl(Bonxai::VoxelGrid<node_t>&& g) | ||
: grid(std::move(g)), accessor(grid.createAccessor()) | ||
{ | ||
} | ||
Bonxai::VoxelGrid<node_t> grid; | ||
mutable typename Bonxai::VoxelGrid<node_t>::Accessor accessor; | ||
}; | ||
std::unique_ptr<Impl> m_impl; | ||
}; | ||
|
||
} // namespace mrpt::maps |
Oops, something went wrong.