MRPT
1.9.9
|
A class used to store a Plane-based Map (PbMap).
A PbMap consists of a set of planar patches described by geometric features (shape, relative position, etc.) and/or radiometric features (dominant color). It is organized as an annotated, undirected graph, where nodes stand for planar patches and edges connect neighbor planes when the distance between their closest points is under a threshold. This graph structure permits to find efficiently the closest neighbors of a plane, or to select groups of nearby planes representing part of the scene.
Definition at line 45 of file pbmap/PbMap.h.
#include <mrpt/pbmap/PbMap.h>
Public Member Functions | |
void * | operator new (size_t size) |
void * | operator new[] (size_t size) |
void | operator delete (void *ptr) noexcept |
void | operator delete[] (void *ptr) noexcept |
void | operator delete (void *memory, void *ptr) noexcept |
void * | operator new (size_t size, const std::nothrow_t &) noexcept |
void | operator delete (void *ptr, const std::nothrow_t &) noexcept |
PbMap () | |
void | savePbMap (std::string filePath) |
void | loadPbMap (std::string PbMapFile) |
void | MergeWith (PbMap &pbm, Eigen::Matrix4f &T) |
void | printPbMap (std::string txtFilePbm) |
virtual mxArray * | writeToMatlab () const |
Introduces a pure virtual method responsible for writing to a mxArray Matlab object, typically a MATLAB struct whose contents are documented in each derived class. More... | |
RTTI classes and functions for polymorphic hierarchies | |
mrpt::rtti::CObject::Ptr | duplicateGetSmartPtr () const |
Returns a copy of the object, indepently of its class, as a smart pointer (the newly created object will exist as long as any copy of this smart pointer). More... | |
Static Public Member Functions | |
static void * | operator new (size_t size, void *ptr) |
Public Attributes | |
std::vector< Plane > | vPlanes |
std::string | label |
int | FloorPlane |
pcl::PointCloud< PointT >::Ptr | globalMapPtr |
pcl::PointCloud< pcl::PointXYZRGBA >::Ptr | edgeCloudPtr |
pcl::PointCloud< pcl::PointXYZRGBA >::Ptr | outEdgeCloudPtr |
unsigned | background |
unsigned | foreground |
unsigned | groundplane |
Protected Member Functions | |
CSerializable virtual methods | |
uint8_t | serializeGetVersion () const override |
Must return the current versioning number of the object. More... | |
void | serializeTo (mrpt::serialization::CArchive &out) const override |
Pure virtual method for writing (serializing) to an abstract archive. More... | |
void | serializeFrom (mrpt::serialization::CArchive &in, uint8_t serial_version) override |
Pure virtual method for reading (deserializing) from an abstract archive. More... | |
RTTI stuff | |
using | Ptr = std::shared_ptr< PbMap > |
using | ConstPtr = std::shared_ptr< const PbMap > |
using | UniquePtr = std::unique_ptr< PbMap > |
using | ConstUniquePtr = std::unique_ptr< const PbMap > |
static mrpt::rtti::CLASSINIT | _init_PbMap |
static const mrpt::rtti::TRuntimeClassId | runtimeClassId |
static constexpr const char * | className = "PbMap" |
static const mrpt::rtti::TRuntimeClassId * | _GetBaseClass () |
static constexpr auto | getClassName () |
static const mrpt::rtti::TRuntimeClassId & | GetRuntimeClassIdStatic () |
static mrpt::rtti::CObject * | CreateObject () |
template<typename... Args> | |
static Ptr | Create (Args &&... args) |
template<typename... Args> | |
static UniquePtr | CreateUnique (Args &&... args) |
virtual const mrpt::rtti::TRuntimeClassId * | GetRuntimeClass () const override |
Returns information about the class of an object in runtime. More... | |
virtual mrpt::rtti::CObject * | clone () const override |
Returns a deep copy (clone) of the object, indepently of its class. More... | |
using mrpt::pbmap::PbMap::ConstPtr = std::shared_ptr<const PbMap > |
Definition at line 47 of file pbmap/PbMap.h.
using mrpt::pbmap::PbMap::ConstUniquePtr = std::unique_ptr<const PbMap > |
Definition at line 47 of file pbmap/PbMap.h.
using mrpt::pbmap::PbMap::Ptr = std::shared_ptr< PbMap > |
A type for the associated smart pointer
Definition at line 47 of file pbmap/PbMap.h.
using mrpt::pbmap::PbMap::UniquePtr = std::unique_ptr< PbMap > |
Definition at line 47 of file pbmap/PbMap.h.
|
staticprotected |
|
overridevirtual |
Returns a deep copy (clone) of the object, indepently of its class.
Implements mrpt::rtti::CObject.
|
inlinestatic |
Definition at line 47 of file pbmap/PbMap.h.
|
static |
|
inlinestatic |
Definition at line 47 of file pbmap/PbMap.h.
|
inlineinherited |
Returns a copy of the object, indepently of its class, as a smart pointer (the newly created object will exist as long as any copy of this smart pointer).
Definition at line 168 of file CObject.h.
References mrpt::rtti::CObject::clone().
Referenced by mrpt::obs::CRawlog::addActions(), and mrpt::obs::CRawlog::addObservations().
|
inlinestatic |
Definition at line 47 of file pbmap/PbMap.h.
|
overridevirtual |
Returns information about the class of an object in runtime.
Reimplemented from mrpt::serialization::CSerializable.
|
static |
void PbMap::loadPbMap | ( | std::string | PbMapFile | ) |
Load a PbMap from the given filePath
Definition at line 96 of file PbMap.cpp.
References mrpt::serialization::archiveFrom(), mrpt::io::CFileGZInputStream::close(), and mrpt::io::CFileGZInputStream::open().
Referenced by mrpt::pbmap::PbMapLocaliser::LoadPreviousPbMaps().
Merge two pbmaps
Definition at line 119 of file PbMap.cpp.
References globalMapPtr, mrpt::pbmap::Plane::id, mrpt::pbmap::Plane::planePointCloudPtr, mrpt::pbmap::Plane::polygonContourPtr, mrpt::pbmap::Plane::v3center, mrpt::pbmap::Plane::v3normal, mrpt::pbmap::Plane::v3PpalDir, and vPlanes.
Definition at line 47 of file pbmap/PbMap.h.
Definition at line 47 of file pbmap/PbMap.h.
Definition at line 47 of file pbmap/PbMap.h.
Definition at line 47 of file pbmap/PbMap.h.
|
inline |
Definition at line 47 of file pbmap/PbMap.h.
|
inlinenoexcept |
Definition at line 47 of file pbmap/PbMap.h.
Definition at line 47 of file pbmap/PbMap.h.
|
inline |
Definition at line 47 of file pbmap/PbMap.h.
void PbMap::printPbMap | ( | std::string | txtFilePbm | ) |
void PbMap::savePbMap | ( | std::string | filePath | ) |
Save PbMap in the given filePath
Definition at line 85 of file PbMap.cpp.
References mrpt::serialization::archiveFrom(), and mrpt::io::CFileGZOutputStream::close().
Referenced by mrpt::pbmap::PbMapMaker::serializePbMap().
|
overrideprotectedvirtual |
Pure virtual method for reading (deserializing) from an abstract archive.
Users don't call this method directly. Instead, use stream >> object;
.
in | The input binary stream where the object data must read from. |
version | The version of the object stored in the stream: use this version number in your code to know how to read the incoming data. |
std::exception | On any I/O error |
Implements mrpt::serialization::CSerializable.
Definition at line 54 of file PbMap.cpp.
References mrpt::pbmap::Plane::id, and MRPT_THROW_UNKNOWN_SERIALIZATION_VERSION.
|
overrideprotectedvirtual |
Must return the current versioning number of the object.
Start in zero for new classes, and increments each time there is a change in the stored format.
Implements mrpt::serialization::CSerializable.
|
overrideprotectedvirtual |
Pure virtual method for writing (serializing) to an abstract archive.
Users don't call this method directly. Instead, use stream << object;
.
std::exception | On any I/O error |
Implements mrpt::serialization::CSerializable.
|
inlinevirtualinherited |
Introduces a pure virtual method responsible for writing to a mxArray
Matlab object, typically a MATLAB struct
whose contents are documented in each derived class.
mxArray
(caller is responsible of memory freeing) or nullptr is class does not support conversion to MATLAB. Definition at line 68 of file CSerializable.h.
|
staticprotected |
Definition at line 47 of file pbmap/PbMap.h.
unsigned mrpt::pbmap::PbMap::background |
Definition at line 69 of file pbmap/PbMap.h.
|
static |
Definition at line 47 of file pbmap/PbMap.h.
pcl::PointCloud<pcl::PointXYZRGBA>::Ptr mrpt::pbmap::PbMap::edgeCloudPtr |
Definition at line 67 of file pbmap/PbMap.h.
int mrpt::pbmap::PbMap::FloorPlane |
Floor plane id
Definition at line 61 of file pbmap/PbMap.h.
Referenced by mrpt::pbmap::PbMapMaker::detectPlanesCloud().
unsigned mrpt::pbmap::PbMap::foreground |
Definition at line 69 of file pbmap/PbMap.h.
Registered point cloud from the RGB-D or Depth frames and visual odometry.
Definition at line 65 of file pbmap/PbMap.h.
Referenced by mrpt::pbmap::PbMapMaker::detectPlanesCloud(), MergeWith(), and mrpt::pbmap::PbMapMaker::viz_cb().
unsigned mrpt::pbmap::PbMap::groundplane |
Definition at line 69 of file pbmap/PbMap.h.
std::string mrpt::pbmap::PbMap::label |
Label to store a semantic attribute
Definition at line 58 of file pbmap/PbMap.h.
pcl::PointCloud<pcl::PointXYZRGBA>::Ptr mrpt::pbmap::PbMap::outEdgeCloudPtr |
Definition at line 68 of file pbmap/PbMap.h.
|
staticprotected |
Definition at line 47 of file pbmap/PbMap.h.
std::vector<Plane> mrpt::pbmap::PbMap::vPlanes |
Vector to store the 3D-planes which are the basic characteristic of our map.
Definition at line 55 of file pbmap/PbMap.h.
Referenced by mrpt::pbmap::SemanticClustering::arrangeNewGroups(), mrpt::pbmap::SemanticClustering::buildCoVisibilityMatrix(), mrpt::pbmap::SemanticClustering::buildProximityMatrix(), mrpt::pbmap::ConsistencyTest::calcAlignmentError(), mrpt::pbmap::PbMapMaker::checkProximity(), mrpt::pbmap::PbMapLocaliser::compareSubgraphNeighbors(), mrpt::pbmap::PbMapMaker::detectPlanesCloud(), mrpt::pbmap::ConsistencyTest::estimatePose(), mrpt::pbmap::ConsistencyTest::estimatePoseRANSAC(), mrpt::pbmap::ConsistencyTest::estimatePoseWithCovariance(), mrpt::pbmap::SemanticClustering::evalPartition(), mrpt::pbmap::PbMapLocaliser::getAreaMatch(), mrpt::pbmap::ConsistencyTest::getRTwithModel(), mrpt::pbmap::ConsistencyTest::initPose(), mrpt::pbmap::ConsistencyTest::initPose2D(), mrpt::pbmap::PbMapLocaliser::LoadPreviousPbMaps(), MergeWith(), mrpt::pbmap::PbMapLocaliser::run(), mrpt::pbmap::PbMapMaker::run(), mrpt::pbmap::PbMapLocaliser::searchPlaneContext(), mrpt::pbmap::Subgraph::Subgraph(), and mrpt::pbmap::PbMapMaker::viz_cb().
Page generated by Doxygen 1.8.14 for MRPT 1.9.9 Git: 7d5e6d718 Fri Aug 24 01:51:28 2018 +0200 at lun nov 2 08:35:50 CET 2020 |