Main MRPT website > C++ reference for MRPT 1.5.6
List of all members | Classes | Public Types | Public Member Functions | Static Public Member Functions | Public Attributes | Static Public Attributes | Protected Member Functions
mrpt::maps::COctoMap Class Reference

Detailed Description

A three-dimensional probabilistic occupancy grid, implemented as an octo-tree with the "octomap" C++ library.

This version only stores occupancy information at each octree node. See the base class mrpt::maps::COctoMapBase.

See also
CMetricMap, the example in "MRPT/samples/octomap_simple"

Definition at line 37 of file maps/COctoMap.h.

#include <mrpt/maps/COctoMap.h>

Inheritance diagram for mrpt::maps::COctoMap:
Inheritance graph

Classes

struct  TMapDefinition
 
struct  TMapDefinitionBase
 

Public Types

typedef COctoMapBase< octomap::OcTree, octomap::OcTreeNode > myself_t
 The type of this MRPT class. More...
 

Public Member Functions

voidoperator new (size_t size)
 
voidoperator new[] (size_t size)
 
void operator delete (void *ptr) throw ()
 
void operator delete[] (void *ptr) throw ()
 
void operator delete (void *memory, void *ptr) throw ()
 
voidoperator new (size_t size, const std::nothrow_t &) throw ()
 
void operator delete (void *ptr, const std::nothrow_t &) throw ()
 
 COctoMap (const double resolution=0.10)
 Default constructor. More...
 
virtual ~COctoMap ()
 Destructor. More...
 
virtual void getAsOctoMapVoxels (mrpt::opengl::COctoMapVoxels &gl_obj) const MRPT_OVERRIDE
 Builds a renderizable representation of the octomap as a mrpt::opengl::COctoMapVoxels object. More...
 
virtual bool isEmpty () const MRPT_OVERRIDE
 Returns true if the map is empty/no observation has been inserted. More...
 
OCTOMAP_CLASS & getOctomap ()
 Get a reference to the internal octomap object. More...
 
virtual void saveMetricMapRepresentationToFile (const std::string &filNamePrefix) const MRPT_OVERRIDE
 This virtual method saves the map to a file "filNamePrefix"+< some_file_extension >, as an image or in any other applicable way (Notice that other methods to save the map may be implemented in classes implementing this virtual interface). More...
 
virtual void getAs3DObject (mrpt::opengl::CSetOfObjectsPtr &outObj) const MRPT_OVERRIDE
 Returns a 3D object representing the map. More...
 
bool getPointOccupancy (const float x, const float y, const float z, double &prob_occupancy) const
 Get the occupancy probability [0,1] of a point. More...
 
void insertPointCloud (const CPointsMap &ptMap, const float sensor_x, const float sensor_y, const float sensor_z)
 Update the octomap with a 2D or 3D scan, given directly as a point cloud and the 3D location of the sensor (the origin of the rays) in this map's frame of reference. More...
 
bool castRay (const mrpt::math::TPoint3D &origin, const mrpt::math::TPoint3D &direction, mrpt::math::TPoint3D &end, bool ignoreUnknownCells=false, double maxRange=-1.0) const
 Performs raycasting in 3d, similar to computeRay(). More...
 
void clear ()
 Erase all the contents of the map. More...
 
void loadFromProbabilisticPosesAndObservations (const mrpt::maps::CSimpleMap &Map)
 Load the map contents from a CSimpleMap object, erasing all previous content of the map. More...
 
void loadFromSimpleMap (const mrpt::maps::CSimpleMap &Map)
 Load the map contents from a CSimpleMap object, erasing all previous content of the map. More...
 
bool insertObservation (const mrpt::obs::CObservation *obs, const mrpt::poses::CPose3D *robotPose=NULL)
 Insert the observation information into this map. More...
 
bool insertObservationPtr (const mrpt::obs::CObservationPtr &obs, const mrpt::poses::CPose3D *robotPose=NULL)
 A wrapper for smart pointers, just calls the non-smart pointer version. More...
 
double computeObservationLikelihood (const mrpt::obs::CObservation *obs, const mrpt::poses::CPose3D &takenFrom)
 Computes the log-likelihood of a given observation given an arbitrary robot 3D pose. More...
 
double computeObservationLikelihood (const mrpt::obs::CObservation *obs, const mrpt::poses::CPose2D &takenFrom)
 
virtual bool canComputeObservationLikelihood (const mrpt::obs::CObservation *obs) const
 Returns true if this map is able to compute a sensible likelihood function for this observation (i.e. More...
 
bool canComputeObservationLikelihood (const mrpt::obs::CObservationPtr &obs) const
 
double computeObservationsLikelihood (const mrpt::obs::CSensoryFrame &sf, const mrpt::poses::CPose2D &takenFrom)
 Returns the sum of the log-likelihoods of each individual observation within a mrpt::obs::CSensoryFrame. More...
 
bool canComputeObservationsLikelihood (const mrpt::obs::CSensoryFrame &sf) const
 Returns true if this map is able to compute a sensible likelihood function for this observation (i.e. More...
 
virtual void determineMatching2D (const mrpt::maps::CMetricMap *otherMap, const mrpt::poses::CPose2D &otherMapPose, mrpt::utils::TMatchingPairList &correspondences, const TMatchingParams &params, TMatchingExtraResults &extraResults) const
 Computes the matching between this and another 2D point map, which includes finding: More...
 
virtual void determineMatching3D (const mrpt::maps::CMetricMap *otherMap, const mrpt::poses::CPose3D &otherMapPose, mrpt::utils::TMatchingPairList &correspondences, const TMatchingParams &params, TMatchingExtraResults &extraResults) const
 Computes the matchings between this and another 3D points map - method used in 3D-ICP. More...
 
virtual float compute3DMatchingRatio (const mrpt::maps::CMetricMap *otherMap, const mrpt::poses::CPose3D &otherMapPose, const TMatchingRatioParams &params) const
 Computes the ratio in [0,1] of correspondences between "this" and the "otherMap" map, whose 6D pose relative to "this" is "otherMapPose" In the case of a multi-metric map, this returns the average between the maps. More...
 
virtual void auxParticleFilterCleanUp ()
 This method is called at the end of each "prediction-update-map insertion" cycle within "mrpt::slam::CMetricMapBuilderRBPF::processActionObservation". More...
 
virtual float squareDistanceToClosestCorrespondence (float x0, float y0) const
 Returns the square distance from the 2D point (x0,y0) to the closest correspondence in the map. More...
 
virtual const mrpt::maps::CSimplePointsMapgetAsSimplePointsMap () const
 If the map is a simple points map or it's a multi-metric map that contains EXACTLY one simple points map, return it. More...
 
virtual mrpt::maps::CSimplePointsMapgetAsSimplePointsMap ()
 
virtual mxArraywriteToMatlab () 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...
 
mrpt::utils::CObjectPtr 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...
 
CObjectclone () const
 Cloning interface for smart pointers. More...
 
Direct access to octomap library methods
void insertRay (const float end_x, const float end_y, const float end_z, const float sensor_x, const float sensor_y, const float sensor_z)
 Just like insertPointCloud but with a single ray. More...
 
void updateVoxel (const double x, const double y, const double z, bool occupied)
 Manually updates the occupancy of the voxel at (x,y,z) as being occupied (true) or free (false), using the log-odds parameters in insertionOptions. More...
 
bool isPointWithinOctoMap (const float x, const float y, const float z) const
 Check whether the given point lies within the volume covered by the octomap (that is, whether it is "mapped") More...
 
double getResolution () const
 
unsigned int getTreeDepth () const
 
size_t size () const
 
size_t memoryUsage () const
 
size_t memoryUsageNode () const
 
size_t memoryFullGrid () const
 
double volume ()
 
void getMetricSize (double &x, double &y, double &z)
 Size of OcTree (all known space) in meters for x, y and z dimension. More...
 
void getMetricSize (double &x, double &y, double &z) const
 Size of OcTree (all known space) in meters for x, y and z dimension. More...
 
void getMetricMin (double &x, double &y, double &z)
 minimum value of the bounding box of all known space in x, y, z More...
 
void getMetricMin (double &x, double &y, double &z) const
 minimum value of the bounding box of all known space in x, y, z More...
 
void getMetricMax (double &x, double &y, double &z)
 maximum value of the bounding box of all known space in x, y, z More...
 
void getMetricMax (double &x, double &y, double &z) const
 maximum value of the bounding box of all known space in x, y, z More...
 
size_t calcNumNodes () const
 Traverses the tree to calculate the total number of nodes. More...
 
size_t getNumLeafNodes () const
 Traverses the tree to calculate the total number of leaf nodes. More...
 
void setOccupancyThres (double prob) MRPT_OVERRIDE
 
void setProbHit (double prob) MRPT_OVERRIDE
 
void setProbMiss (double prob) MRPT_OVERRIDE
 
void setClampingThresMin (double thresProb) MRPT_OVERRIDE
 
void setClampingThresMax (double thresProb) MRPT_OVERRIDE
 
double getOccupancyThres () const MRPT_OVERRIDE
 
float getOccupancyThresLog () const MRPT_OVERRIDE
 
double getProbHit () const MRPT_OVERRIDE
 
float getProbHitLog () const MRPT_OVERRIDE
 
double getProbMiss () const MRPT_OVERRIDE
 
float getProbMissLog () const MRPT_OVERRIDE
 
double getClampingThresMin () const MRPT_OVERRIDE
 
float getClampingThresMinLog () const MRPT_OVERRIDE
 
double getClampingThresMax () const MRPT_OVERRIDE
 
float getClampingThresMaxLog () const MRPT_OVERRIDE
 

Static Public Member Functions

static voidoperator new (size_t size, void *ptr)
 

Public Attributes

TInsertionOptions insertionOptions
 The options used when inserting observations in the map. More...
 
TLikelihoodOptions likelihoodOptions
 
TRenderingOptions renderingOptions
 
TMapGenericParams genericMapParams
 Common params to all maps. More...
 

Static Public Attributes

static const mrpt::utils::TRuntimeClassId classCObject
 
RTTI stuff
static const mrpt::utils::TRuntimeClassId classCMetricMap
 
RTTI stuff
static const mrpt::utils::TRuntimeClassId classCSerializable
 

Protected Member Functions

void internal_clear () MRPT_OVERRIDE
 Internal method called by clear() More...
 
bool internal_insertObservation (const mrpt::obs::CObservation *obs, const mrpt::poses::CPose3D *robotPose) MRPT_OVERRIDE
 Internal method called by insertObservation() More...
 
bool internal_build_PointCloud_for_observation (const mrpt::obs::CObservation *obs, const mrpt::poses::CPose3D *robotPose, octomap_point3d &sensorPt, octomap_pointcloud &scan) const
 Builds the list of 3D points in global coordinates for a generic observation. More...
 
 PIMPL_DECLARE_TYPE (octomap::OcTree, m_octomap)
 The actual octo-map object. More...
 
void publishEvent (const mrptEvent &e) const
 Called when you want this object to emit an event to all the observers currently subscribed to this object. More...
 
bool hasSubscribers () const
 Can be called by a derived class before preparing an event for publishing with publishEvent to determine if there is no one subscribed, so it can save the wasted time preparing an event that will be not read. More...
 
CSerializable virtual methods
void writeToStream (mrpt::utils::CStream &out, int *getVersion) const
 Introduces a pure virtual method responsible for writing to a CStream. More...
 
void readFromStream (mrpt::utils::CStream &in, int version)
 Introduces a pure virtual method responsible for loading from a CStream This can not be used directly be users, instead use "stream >> object;" for reading it from a stream or "stream >> object_ptr;" if the class is unknown apriori. More...
 

RTTI stuff

typedef COctoMapPtr Ptr
 
typedef COctoMapPtr ConstPtr
 
static mrpt::utils::CLASSINIT _init_COctoMap
 
static mrpt::utils::TRuntimeClassId classCOctoMap
 
static const mrpt::utils::TRuntimeClassIdclassinfo
 
static const mrpt::utils::TRuntimeClassId_GetBaseClass ()
 
virtual const mrpt::utils::TRuntimeClassIdGetRuntimeClass () const
 Returns information about the class of an object in runtime. More...
 
virtual mrpt::utils::CObjectduplicate () const
 Returns a copy of the object, indepently of its class. More...
 
static mrpt::utils::CObjectCreateObject ()
 
static COctoMapPtr Create ()
 

Map Definition Interface stuff (see mrpt::maps::TMetricMapInitializer) @{

static const size_t m_private_map_register_id = mrpt::maps::internal::TMetricMapTypesRegistry::Instance().doRegister( "COctoMap,octoMap" ,& mrpt::maps::COctoMap ::MapDefinition,& mrpt::maps::COctoMap ::internal_CreateFromMapDefinition)
 ID used to initialize class registration (just ignore it) More...
 
static mrpt::maps::TMetricMapInitializerMapDefinition ()
 Returns default map definition initializer. More...
 
static COctoMapCreateFromMapDefinition (const mrpt::maps::TMetricMapInitializer &def)
 Constructor from a map definition structure: initializes the map and its parameters accordingly. More...
 
static mrpt::maps::CMetricMapinternal_CreateFromMapDefinition (const mrpt::maps::TMetricMapInitializer &def)
 

Member Typedef Documentation

◆ ConstPtr

typedef COctoMapPtr mrpt::maps::COctoMap::ConstPtr

Definition at line 40 of file maps/COctoMap.h.

◆ myself_t

typedef COctoMapBase<octomap::OcTree , octomap::OcTreeNode > mrpt::maps::COctoMapBase< octomap::OcTree , octomap::OcTreeNode >::myself_t
inherited

The type of this MRPT class.

Definition at line 46 of file maps/COctoMapBase.h.

◆ Ptr

typedef COctoMapPtr mrpt::maps::COctoMap::Ptr

A typedef for the associated smart pointer

Definition at line 40 of file maps/COctoMap.h.

Constructor & Destructor Documentation

◆ COctoMap()

COctoMap::COctoMap ( const double  resolution = 0.10)

Default constructor.

Definition at line 80 of file COctoMap.cpp.

◆ ~COctoMap()

COctoMap::~COctoMap ( )
virtual

Destructor.

Definition at line 88 of file COctoMap.cpp.

Member Function Documentation

◆ _GetBaseClass()

static const mrpt::utils::TRuntimeClassId* mrpt::maps::COctoMap::_GetBaseClass ( )
staticprotected

◆ auxParticleFilterCleanUp()

virtual void mrpt::maps::CMetricMap::auxParticleFilterCleanUp ( )
inlinevirtualinherited

This method is called at the end of each "prediction-update-map insertion" cycle within "mrpt::slam::CMetricMapBuilderRBPF::processActionObservation".

This method should normally do nothing, but in some cases can be used to free auxiliary cached variables.

Reimplemented in mrpt::maps::CLandmarksMap, and mrpt::maps::CMultiMetricMap.

Definition at line 232 of file maps/CMetricMap.h.

◆ calcNumNodes()

size_t COctoMap::calcNumNodes ( ) const

Traverses the tree to calculate the total number of nodes.

Definition at line 302 of file COctoMap.cpp.

References PIMPL_GET_REF.

◆ canComputeObservationLikelihood() [1/2]

bool CMetricMap::canComputeObservationLikelihood ( const mrpt::obs::CObservation obs) const
virtualinherited

Returns true if this map is able to compute a sensible likelihood function for this observation (i.e.

an occupancy grid map cannot with an image). See: Maps and observations compatibility matrix

Parameters
obsThe observation.
See also
computeObservationLikelihood, genericMapParams.enableObservationLikelihood

Definition at line 189 of file CMetricMap.cpp.

◆ canComputeObservationLikelihood() [2/2]

bool mrpt::maps::CMetricMap::canComputeObservationLikelihood ( const mrpt::obs::CObservationPtr &  obs) const
inherited

This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.

◆ canComputeObservationsLikelihood()

bool CMetricMap::canComputeObservationsLikelihood ( const mrpt::obs::CSensoryFrame sf) const
inherited

Returns true if this map is able to compute a sensible likelihood function for this observation (i.e.

an occupancy grid map cannot with an image). See: Maps and observations compatibility matrix

Parameters
sfThe observations.
See also
canComputeObservationLikelihood

Definition at line 94 of file CMetricMap.cpp.

References mrpt::obs::CSensoryFrame::begin(), and mrpt::obs::CSensoryFrame::end().

◆ castRay()

bool mrpt::maps::COctoMapBase< OCTREE, OCTREE_NODE >::castRay ( const mrpt::math::TPoint3D origin,
const mrpt::math::TPoint3D direction,
mrpt::math::TPoint3D end,
bool  ignoreUnknownCells = false,
double  maxRange = -1.0 
) const
inherited

Performs raycasting in 3d, similar to computeRay().

A ray is cast from origin with a given direction, the first occupied cell is returned (as center coordinate). If the starting coordinate is already occupied in the tree, this coordinate will be returned as a hit.

Parameters
originstarting coordinate of ray
directionA vector pointing in the direction of the raycast. Does not need to be normalized.
endreturns the center of the cell that was hit by the ray, if successful
ignoreUnknownCellswhether unknown cells are ignored. If false (default), the raycast aborts when an unkown cell is hit.
maxRangeMaximum range after which the raycast is aborted (<= 0: no limit, default)
Returns
whether or not an occupied cell was hit

Definition at line 213 of file COctoMapBase_impl.h.

References PIMPL_GET_REF, mrpt::math::TPoint3D::x, mrpt::math::TPoint3D::y, and mrpt::math::TPoint3D::z.

◆ clear()

void CMetricMap::clear ( )
inherited

◆ clone()

CObject* mrpt::utils::CObject::clone ( ) const
inlineinherited

Cloning interface for smart pointers.

Definition at line 143 of file CObject.h.

◆ compute3DMatchingRatio()

float CMetricMap::compute3DMatchingRatio ( const mrpt::maps::CMetricMap otherMap,
const mrpt::poses::CPose3D otherMapPose,
const TMatchingRatioParams params 
) const
virtualinherited

Computes the ratio in [0,1] of correspondences between "this" and the "otherMap" map, whose 6D pose relative to "this" is "otherMapPose" In the case of a multi-metric map, this returns the average between the maps.

This method always return 0 for grid maps.

Parameters
otherMap[IN] The other map to compute the matching with.
otherMapPose[IN] The 6D pose of the other map as seen from "this".
params[IN] Matching parameters
Returns
The matching ratio [0,1]
See also
determineMatching2D

Reimplemented in mrpt::maps::COccupancyGridMap2D, mrpt::maps::CPointsMap, mrpt::maps::CMultiMetricMap, mrpt::maps::CRandomFieldGridMap2D, mrpt::maps::CLandmarksMap, mrpt::maps::CHeightGridMap2D, mrpt::maps::CBeaconMap, and mrpt::maps::CReflectivityGridMap2D.

Definition at line 168 of file CMetricMap.cpp.

References MRPT_END, MRPT_START, MRPT_UNUSED_PARAM, and THROW_EXCEPTION.

Referenced by mrpt::maps::CMultiMetricMap::compute3DMatchingRatio().

◆ computeObservationLikelihood() [1/2]

double CMetricMap::computeObservationLikelihood ( const mrpt::obs::CObservation obs,
const mrpt::poses::CPose3D takenFrom 
)
inherited

Computes the log-likelihood of a given observation given an arbitrary robot 3D pose.

See: Maps and observations compatibility matrix

Parameters
takenFromThe robot's pose the observation is supposed to be taken from.
obsThe observation.
Returns
This method returns a log-likelihood.
See also
Used in particle filter algorithms, see: CMultiMetricMapPDF::update

Definition at line 196 of file CMetricMap.cpp.

Referenced by mrpt::maps::CMultiMetricMapPDF::PF_SLAM_computeObservationLikelihoodForParticle().

◆ computeObservationLikelihood() [2/2]

double CMetricMap::computeObservationLikelihood ( const mrpt::obs::CObservation obs,
const mrpt::poses::CPose2D takenFrom 
)
inherited

This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.

Definition at line 86 of file CMetricMap.cpp.

◆ computeObservationsLikelihood()

double CMetricMap::computeObservationsLikelihood ( const mrpt::obs::CSensoryFrame sf,
const mrpt::poses::CPose2D takenFrom 
)
inherited

Returns the sum of the log-likelihoods of each individual observation within a mrpt::obs::CSensoryFrame.

See: Maps and observations compatibility matrix

Parameters
takenFromThe robot's pose the observation is supposed to be taken from.
sfThe set of observations in a CSensoryFrame.
Returns
This method returns a log-likelihood.
See also
canComputeObservationsLikelihood

Definition at line 75 of file CMetricMap.cpp.

References mrpt::obs::CSensoryFrame::begin(), and mrpt::obs::CSensoryFrame::end().

Referenced by mrpt::hmtslam::CLSLAM_RBPF_2DLASER::auxiliarComputeObservationLikelihood().

◆ Create()

static COctoMapPtr mrpt::maps::COctoMap::Create ( )
static

◆ CreateFromMapDefinition()

mrpt::maps::COctoMap * mrpt::maps::COctoMap::CreateFromMapDefinition ( const mrpt::maps::TMetricMapInitializer def)
static

Constructor from a map definition structure: initializes the map and its parameters accordingly.

Definition at line 40 of file COctoMap.cpp.

◆ CreateObject()

static mrpt::utils::CObject* mrpt::maps::COctoMap::CreateObject ( )
static

◆ determineMatching2D()

void CMetricMap::determineMatching2D ( const mrpt::maps::CMetricMap otherMap,
const mrpt::poses::CPose2D otherMapPose,
mrpt::utils::TMatchingPairList correspondences,
const TMatchingParams params,
TMatchingExtraResults extraResults 
) const
virtualinherited

Computes the matching between this and another 2D point map, which includes finding:

  • The set of points pairs in each map
  • The mean squared distance between corresponding pairs.

The algorithm is:

  • For each point in "otherMap":
    • Transform the point according to otherMapPose
    • Search with a KD-TREE the closest correspondences in "this" map.
    • Add to the set of candidate matchings, if it passes all the thresholds in params.

This method is the most time critical one into ICP-like algorithms.

Parameters
otherMap[IN] The other map to compute the matching with.
otherMapPose[IN] The pose of the other map as seen from "this".
params[IN] Parameters for the determination of pairings.
correspondences[OUT] The detected matchings pairs.
extraResults[OUT] Other results.
See also
compute3DMatchingRatio

Reimplemented in mrpt::maps::COccupancyGridMap2D, mrpt::maps::CPointsMap, mrpt::maps::CMultiMetricMap, and mrpt::maps::CBeaconMap.

Definition at line 132 of file CMetricMap.cpp.

References MRPT_END, MRPT_START, MRPT_UNUSED_PARAM, and THROW_EXCEPTION.

Referenced by mrpt::slam::CICP::ICP_Method_Classic().

◆ determineMatching3D()

void CMetricMap::determineMatching3D ( const mrpt::maps::CMetricMap otherMap,
const mrpt::poses::CPose3D otherMapPose,
mrpt::utils::TMatchingPairList correspondences,
const TMatchingParams params,
TMatchingExtraResults extraResults 
) const
virtualinherited

Computes the matchings between this and another 3D points map - method used in 3D-ICP.

This method finds the set of point pairs in each map.

The method is the most time critical one into ICP-like algorithms.

The algorithm is:

  • For each point in "otherMap":
    • Transform the point according to otherMapPose
    • Search with a KD-TREE the closest correspondences in "this" map.
    • Add to the set of candidate matchings, if it passes all the thresholds in params.
Parameters
otherMap[IN] The other map to compute the matching with.
otherMapPose[IN] The pose of the other map as seen from "this".
params[IN] Parameters for the determination of pairings.
correspondences[OUT] The detected matchings pairs.
extraResults[OUT] Other results.
See also
compute3DMatchingRatio

Reimplemented in mrpt::maps::CPointsMap.

Definition at line 150 of file CMetricMap.cpp.

References MRPT_END, MRPT_START, MRPT_UNUSED_PARAM, and THROW_EXCEPTION.

Referenced by mrpt::slam::CICP::ICP3D_Method_Classic().

◆ duplicate()

virtual mrpt::utils::CObject* mrpt::maps::COctoMap::duplicate ( ) const
virtual

Returns a copy of the object, indepently of its class.

Implements mrpt::utils::CObject.

◆ duplicateGetSmartPtr()

mrpt::utils::CObjectPtr mrpt::utils::CObject::duplicateGetSmartPtr ( ) const
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 140 of file CObject.h.

Referenced by mrpt::obs::CRawlog::addActions(), mrpt::slam::CIncrementalMapPartitioner::addMapFrame(), and mrpt::obs::CRawlog::addObservations().

◆ getAs3DObject()

virtual void mrpt::maps::COctoMapBase< octomap::OcTree , octomap::OcTreeNode >::getAs3DObject ( mrpt::opengl::CSetOfObjectsPtr &  outObj) const
inlinevirtualinherited

Returns a 3D object representing the map.

See also
renderingOptions

Implements mrpt::maps::CMetricMap.

Definition at line 187 of file maps/COctoMapBase.h.

References mrpt::opengl::COctoMapVoxels::Create(), and mrpt::maps::COctoMapBase< octree_t, octree_node_t >::getAsOctoMapVoxels().

◆ getAsOctoMapVoxels()

void COctoMap::getAsOctoMapVoxels ( mrpt::opengl::COctoMapVoxels gl_obj) const
virtual

◆ getAsSimplePointsMap() [1/2]

virtual const mrpt::maps::CSimplePointsMap* mrpt::maps::CMetricMap::getAsSimplePointsMap ( ) const
inlinevirtualinherited

If the map is a simple points map or it's a multi-metric map that contains EXACTLY one simple points map, return it.

Otherwise, return NULL

Reimplemented in mrpt::maps::CPointsMap, mrpt::maps::CMultiMetricMap, and mrpt::maps::CSimplePointsMap.

Definition at line 240 of file maps/CMetricMap.h.

Referenced by mrpt::maps::CPointsMap::compute3DMatchingRatio().

◆ getAsSimplePointsMap() [2/2]

virtual mrpt::maps::CSimplePointsMap* mrpt::maps::CMetricMap::getAsSimplePointsMap ( )
inlinevirtualinherited

◆ getClampingThresMax()

double COctoMap::getClampingThresMax ( ) const
virtual

◆ getClampingThresMaxLog()

float COctoMap::getClampingThresMaxLog ( ) const
virtual

◆ getClampingThresMin()

double COctoMap::getClampingThresMin ( ) const
virtual

◆ getClampingThresMinLog()

float COctoMap::getClampingThresMinLog ( ) const
virtual

◆ getMetricMax() [1/2]

void COctoMap::getMetricMax ( double &  x,
double &  y,
double &  z 
)

maximum value of the bounding box of all known space in x, y, z

Definition at line 300 of file COctoMap.cpp.

References PIMPL_GET_REF.

◆ getMetricMax() [2/2]

void COctoMap::getMetricMax ( double &  x,
double &  y,
double &  z 
) const

maximum value of the bounding box of all known space in x, y, z

Definition at line 301 of file COctoMap.cpp.

References PIMPL_GET_CONSTREF.

◆ getMetricMin() [1/2]

void COctoMap::getMetricMin ( double &  x,
double &  y,
double &  z 
)

minimum value of the bounding box of all known space in x, y, z

Definition at line 298 of file COctoMap.cpp.

References PIMPL_GET_REF.

◆ getMetricMin() [2/2]

void COctoMap::getMetricMin ( double &  x,
double &  y,
double &  z 
) const

minimum value of the bounding box of all known space in x, y, z

Definition at line 299 of file COctoMap.cpp.

References PIMPL_GET_CONSTREF.

◆ getMetricSize() [1/2]

void COctoMap::getMetricSize ( double &  x,
double &  y,
double &  z 
)

Size of OcTree (all known space) in meters for x, y and z dimension.

Definition at line 296 of file COctoMap.cpp.

References PIMPL_GET_REF.

◆ getMetricSize() [2/2]

void COctoMap::getMetricSize ( double &  x,
double &  y,
double &  z 
) const

Size of OcTree (all known space) in meters for x, y and z dimension.

Definition at line 297 of file COctoMap.cpp.

References PIMPL_GET_CONSTREF.

◆ getNumLeafNodes()

size_t COctoMap::getNumLeafNodes ( ) const

Traverses the tree to calculate the total number of leaf nodes.

Definition at line 303 of file COctoMap.cpp.

References PIMPL_GET_CONSTREF.

◆ getOccupancyThres()

double COctoMap::getOccupancyThres ( ) const
virtual

◆ getOccupancyThresLog()

float COctoMap::getOccupancyThresLog ( ) const
virtual

◆ getOctomap()

OCTOMAP_CLASS& mrpt::maps::COctoMapBase< octomap::OcTree , octomap::OcTreeNode >::getOctomap ( )
inlineinherited

Get a reference to the internal octomap object.

Example:

octomap::OcTree &om = map.getOctomap<octomap::OcTree>();

Definition at line 59 of file maps/COctoMapBase.h.

◆ getPointOccupancy()

bool mrpt::maps::COctoMapBase< OCTREE, OCTREE_NODE >::getPointOccupancy ( const float  x,
const float  y,
const float  z,
double &  prob_occupancy 
) const
inherited

Get the occupancy probability [0,1] of a point.

Returns
false if the point is not mapped, in which case the returned "prob" is undefined.

Definition at line 185 of file COctoMapBase_impl.h.

References PIMPL_GET_REF.

◆ getProbHit()

double COctoMap::getProbHit ( ) const
virtual

◆ getProbHitLog()

float COctoMap::getProbHitLog ( ) const
virtual

◆ getProbMiss()

double COctoMap::getProbMiss ( ) const
virtual

◆ getProbMissLog()

float COctoMap::getProbMissLog ( ) const
virtual

◆ getResolution()

double COctoMap::getResolution ( ) const

Definition at line 289 of file COctoMap.cpp.

References PIMPL_GET_CONSTREF.

◆ GetRuntimeClass()

virtual const mrpt::utils::TRuntimeClassId* mrpt::maps::COctoMap::GetRuntimeClass ( ) const
virtual

Returns information about the class of an object in runtime.

Reimplemented from mrpt::maps::CMetricMap.

◆ getTreeDepth()

unsigned int COctoMap::getTreeDepth ( ) const

Definition at line 290 of file COctoMap.cpp.

References PIMPL_GET_CONSTREF.

◆ hasSubscribers()

bool mrpt::utils::CObservable::hasSubscribers ( ) const
inlineprotectedinherited

Can be called by a derived class before preparing an event for publishing with publishEvent to determine if there is no one subscribed, so it can save the wasted time preparing an event that will be not read.

Definition at line 52 of file CObservable.h.

Referenced by mrpt::gui::CWindowDialog::OnMouseDown(), mrpt::gui::CWindowDialog::OnMouseMove(), mrpt::gui::CWindowDialog::OnResize(), and mrpt::opengl::COpenGLViewport::render().

◆ insertObservation()

bool CMetricMap::insertObservation ( const mrpt::obs::CObservation obs,
const mrpt::poses::CPose3D robotPose = NULL 
)
inherited

Insert the observation information into this map.

This method must be implemented in derived classes. See: Maps and observations compatibility matrix

Parameters
obsThe observation
robotPoseThe 3D pose of the robot mobile base in the map reference system, or NULL (default) if you want to use the origin.
See also
CObservation::insertObservationInto

Definition at line 102 of file CMetricMap.cpp.

Referenced by ICPTests::align2scans(), mrpt::maps::COccupancyGridMap2D::computeObservationLikelihood_likelihoodField_Thrun(), mrpt::graphslam::deciders::CRangeScanOps< GRAPH_T >::getICPEdge(), CAngularObservationMesh_fnctr::operator()(), TEST(), and mrpt::graphslam::CGraphSlamEngine< GRAPH_T >::updateMapVisualization().

◆ insertObservationPtr()

bool CMetricMap::insertObservationPtr ( const mrpt::obs::CObservationPtr &  obs,
const mrpt::poses::CPose3D robotPose = NULL 
)
inherited

A wrapper for smart pointers, just calls the non-smart pointer version.

See: Maps and observations compatibility matrix

Definition at line 118 of file CMetricMap.cpp.

References MRPT_END, MRPT_START, and THROW_EXCEPTION.

Referenced by mrpt::slam::CMetricMapBuilderICP::processObservation().

◆ insertPointCloud()

void mrpt::maps::COctoMapBase< OCTREE, OCTREE_NODE >::insertPointCloud ( const CPointsMap ptMap,
const float  sensor_x,
const float  sensor_y,
const float  sensor_z 
)
inherited

Update the octomap with a 2D or 3D scan, given directly as a point cloud and the 3D location of the sensor (the origin of the rays) in this map's frame of reference.

Insertion parameters can be found in insertionOptions.

See also
The generic observation insertion method CMetricMap::insertObservation()

Definition at line 200 of file COctoMapBase_impl.h.

References mrpt::maps::CPointsMap::getPointsBuffer(), MRPT_END, MRPT_START, and PIMPL_GET_REF.

◆ insertRay()

void COctoMap::insertRay ( const float  end_x,
const float  end_y,
const float  end_z,
const float  sensor_x,
const float  sensor_y,
const float  sensor_z 
)

Just like insertPointCloud but with a single ray.

Definition at line 275 of file COctoMap.cpp.

References PIMPL_GET_REF.

◆ internal_build_PointCloud_for_observation()

bool mrpt::maps::COctoMapBase< OCTREE, OCTREE_NODE >::internal_build_PointCloud_for_observation ( const mrpt::obs::CObservation obs,
const mrpt::poses::CPose3D robotPose,
octomap_point3d &  sensorPt,
octomap_pointcloud &  scan 
) const
protectedinherited

◆ internal_clear()

void COctoMap::internal_clear ( )
protectedvirtual

Internal method called by clear()

Implements mrpt::maps::CMetricMap.

Definition at line 319 of file COctoMap.cpp.

References PIMPL_GET_REF.

◆ internal_CreateFromMapDefinition()

mrpt::maps::CMetricMap * COctoMap::internal_CreateFromMapDefinition ( const mrpt::maps::TMetricMapInitializer def)
static

◆ internal_insertObservation()

bool COctoMap::internal_insertObservation ( const mrpt::obs::CObservation obs,
const mrpt::poses::CPose3D robotPose 
)
protectedvirtual

Internal method called by insertObservation()

Implements mrpt::maps::CMetricMap.

Definition at line 156 of file COctoMap.cpp.

References PIMPL_GET_REF.

◆ isEmpty()

virtual bool mrpt::maps::COctoMap::isEmpty ( ) const
inlinevirtual

Returns true if the map is empty/no observation has been inserted.

Implements mrpt::maps::CMetricMap.

Definition at line 55 of file maps/COctoMap.h.

◆ isPointWithinOctoMap()

bool COctoMap::isPointWithinOctoMap ( const float  x,
const float  y,
const float  z 
) const

Check whether the given point lies within the volume covered by the octomap (that is, whether it is "mapped")

Definition at line 283 of file COctoMap.cpp.

References PIMPL_GET_CONSTREF.

◆ loadFromProbabilisticPosesAndObservations()

void CMetricMap::loadFromProbabilisticPosesAndObservations ( const mrpt::maps::CSimpleMap Map)
inherited

Load the map contents from a CSimpleMap object, erasing all previous content of the map.

This is automaticed invoking "insertObservation" for each observation at the mean 3D robot pose as given by the "poses::CPosePDF" in the CSimpleMap object.

See also
insertObservation, CSimpleMap
Exceptions
std::exceptionSome internal steps in invoked methods can raise exceptions on invalid parameters, etc...

Definition at line 48 of file CMetricMap.cpp.

References mrpt::utils::clear(), mrpt::maps::CSimpleMap::get(), and mrpt::maps::CSimpleMap::size().

Referenced by run_test_pf_localization().

◆ loadFromSimpleMap()

void mrpt::maps::CMetricMap::loadFromSimpleMap ( const mrpt::maps::CSimpleMap Map)
inlineinherited

Load the map contents from a CSimpleMap object, erasing all previous content of the map.

This is automaticed invoking "insertObservation" for each observation at the mean 3D robot pose as given by the "poses::CPosePDF" in the CSimpleMap object.

See also
insertObservation, CSimpleMap
Exceptions
std::exceptionSome internal steps in invoked methods can raise exceptions on invalid parameters, etc...

Definition at line 105 of file maps/CMetricMap.h.

Referenced by mrpt::maps::CRandomFieldGridMap2D::internal_clear().

◆ MapDefinition()

mrpt::maps::TMetricMapInitializer * mrpt::maps::COctoMap::MapDefinition ( )
static

Returns default map definition initializer.

See mrpt::maps::TMetricMapInitializer

Definition at line 40 of file COctoMap.cpp.

◆ memoryFullGrid()

size_t COctoMap::memoryFullGrid ( ) const
Returns
Memory usage of a full grid of the same size as the OcTree in bytes (for comparison)

Definition at line 294 of file COctoMap.cpp.

References PIMPL_GET_CONSTREF.

◆ memoryUsage()

size_t COctoMap::memoryUsage ( ) const
Returns
Memory usage of the complete octree in bytes (may vary between architectures)

Definition at line 292 of file COctoMap.cpp.

References PIMPL_GET_CONSTREF.

◆ memoryUsageNode()

size_t COctoMap::memoryUsageNode ( ) const
Returns
Memory usage of the a single octree node

Definition at line 293 of file COctoMap.cpp.

References PIMPL_GET_CONSTREF.

◆ operator delete() [1/3]

void mrpt::maps::COctoMap::operator delete ( void ptr)
throw (
)
inline

Definition at line 40 of file maps/COctoMap.h.

◆ operator delete() [2/3]

void mrpt::maps::COctoMap::operator delete ( void memory,
void ptr 
)
throw (
)
inline

Definition at line 40 of file maps/COctoMap.h.

◆ operator delete() [3/3]

void mrpt::maps::COctoMap::operator delete ( void ptr,
const std::nothrow_t &   
)
throw (
)
inline

Definition at line 40 of file maps/COctoMap.h.

◆ operator delete[]()

void mrpt::maps::COctoMap::operator delete[] ( void ptr)
throw (
)
inline

Definition at line 40 of file maps/COctoMap.h.

◆ operator new() [1/3]

void* mrpt::maps::COctoMap::operator new ( size_t  size)
inline

Definition at line 40 of file maps/COctoMap.h.

◆ operator new() [2/3]

void* mrpt::maps::COctoMap::operator new ( size_t  size,
const std::nothrow_t &   
)
throw (
)
inline

Definition at line 40 of file maps/COctoMap.h.

◆ operator new() [3/3]

static void* mrpt::maps::COctoMap::operator new ( size_t  size,
void ptr 
)
inlinestatic

Definition at line 40 of file maps/COctoMap.h.

◆ operator new[]()

void* mrpt::maps::COctoMap::operator new[] ( size_t  size)
inline

Definition at line 40 of file maps/COctoMap.h.

◆ PIMPL_DECLARE_TYPE()

mrpt::maps::COctoMapBase< octomap::OcTree , octomap::OcTreeNode >::PIMPL_DECLARE_TYPE ( octomap::OcTree  ,
m_octomap   
)
protectedinherited

The actual octo-map object.

◆ publishEvent()

void CObservable::publishEvent ( const mrptEvent e) const
protectedinherited

◆ readFromStream()

void COctoMap::readFromStream ( mrpt::utils::CStream in,
int  version 
)
protectedvirtual

Introduces a pure virtual method responsible for loading from a CStream This can not be used directly be users, instead use "stream >> object;" for reading it from a stream or "stream >> object_ptr;" if the class is unknown apriori.

Parameters
inThe input binary stream where the object data must read from.
versionThe version of the object stored in the stream: use this version number in your code to know how to read the incoming data.
Exceptions
std::exceptionOn any error, see CStream::ReadBuffer
See also
CStream

Implements mrpt::utils::CSerializable.

Definition at line 123 of file COctoMap.cpp.

References mrpt::utils::clear(), mrpt::system::deleteFile(), mrpt::system::getTempFileName(), MRPT_THROW_UNKNOWN_SERIALIZATION_VERSION, PIMPL_GET_REF, mrpt::utils::CMemoryChunk::readFromStream(), THROW_EXCEPTION, and version.

◆ saveMetricMapRepresentationToFile()

void mrpt::maps::COctoMapBase< OCTREE, OCTREE_NODE >::saveMetricMapRepresentationToFile ( const std::string filNamePrefix) const
virtualinherited

This virtual method saves the map to a file "filNamePrefix"+< some_file_extension >, as an image or in any other applicable way (Notice that other methods to save the map may be implemented in classes implementing this virtual interface).

Implements mrpt::maps::CMetricMap.

Definition at line 132 of file COctoMapBase_impl.h.

References mrpt::opengl::CSetOfObjects::Create(), mrpt::opengl::COpenGLScene::insert(), MRPT_END, MRPT_START, and PIMPL_GET_PTR.

◆ setClampingThresMax()

void COctoMap::setClampingThresMax ( double  thresProb)
virtual

◆ setClampingThresMin()

void COctoMap::setClampingThresMin ( double  thresProb)
virtual

◆ setOccupancyThres()

void COctoMap::setOccupancyThres ( double  prob)
virtual

◆ setProbHit()

void COctoMap::setProbHit ( double  prob)
virtual

◆ setProbMiss()

void COctoMap::setProbMiss ( double  prob)
virtual

◆ size()

size_t COctoMap::size ( ) const
Returns
The number of nodes in the tree

Definition at line 291 of file COctoMap.cpp.

References PIMPL_GET_CONSTREF.

◆ squareDistanceToClosestCorrespondence()

float CMetricMap::squareDistanceToClosestCorrespondence ( float  x0,
float  y0 
) const
virtualinherited

Returns the square distance from the 2D point (x0,y0) to the closest correspondence in the map.

Reimplemented in mrpt::maps::CPointsMap.

Definition at line 178 of file CMetricMap.cpp.

References MRPT_END, MRPT_START, MRPT_UNUSED_PARAM, and THROW_EXCEPTION.

◆ updateVoxel()

void COctoMap::updateVoxel ( const double  x,
const double  y,
const double  z,
bool  occupied 
)

Manually updates the occupancy of the voxel at (x,y,z) as being occupied (true) or free (false), using the log-odds parameters in insertionOptions.

Definition at line 279 of file COctoMap.cpp.

References PIMPL_GET_REF.

Referenced by TEST().

◆ volume()

double COctoMap::volume ( )

Definition at line 295 of file COctoMap.cpp.

References PIMPL_GET_REF.

◆ writeToMatlab()

virtual mxArray* mrpt::utils::CSerializable::writeToMatlab ( ) const
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.

Returns
A new mxArray (caller is responsible of memory freeing) or NULL is class does not support conversion to MATLAB.

Definition at line 79 of file CSerializable.h.

◆ writeToStream()

void COctoMap::writeToStream ( mrpt::utils::CStream out,
int *  getVersion 
) const
protectedvirtual

Introduces a pure virtual method responsible for writing to a CStream.

This can not be used directly be users, instead use "stream << object;" for writing it to a stream.

Parameters
outThe output binary stream where object must be dumped.
getVersionIf NULL, the object must be dumped. If not, only the version of the object dump must be returned in this pointer. This enables the versioning of objects dumping and backward compatibility with previously stored data.
Exceptions
std::exceptionOn any error, see CStream::WriteBuffer
See also
CStream

Implements mrpt::utils::CSerializable.

Definition at line 98 of file COctoMap.cpp.

References mrpt::system::deleteFile(), mrpt::system::getTempFileName(), mrpt::utils::CMemoryStream::loadBufferFromFile(), PIMPL_GET_REF, and version.

Member Data Documentation

◆ _init_COctoMap

mrpt::utils::CLASSINIT mrpt::maps::COctoMap::_init_COctoMap
staticprotected

Definition at line 40 of file maps/COctoMap.h.

◆ classCMetricMap

const mrpt::utils::TRuntimeClassId mrpt::maps::CMetricMap::classCMetricMap
staticinherited

Definition at line 57 of file maps/CMetricMap.h.

◆ classCObject

const mrpt::utils::TRuntimeClassId mrpt::utils::CObject::classCObject
staticinherited

Definition at line 128 of file CObject.h.

◆ classCOctoMap

mrpt::utils::TRuntimeClassId mrpt::maps::COctoMap::classCOctoMap
static

Definition at line 40 of file maps/COctoMap.h.

◆ classCSerializable

const mrpt::utils::TRuntimeClassId mrpt::utils::CSerializable::classCSerializable
staticinherited

Definition at line 42 of file CSerializable.h.

◆ classinfo

const mrpt::utils::TRuntimeClassId* mrpt::maps::COctoMap::classinfo
static

Definition at line 40 of file maps/COctoMap.h.

◆ genericMapParams

TMapGenericParams mrpt::maps::CMetricMap::genericMapParams
inherited

◆ insertionOptions

TInsertionOptions mrpt::maps::COctoMapBase< octomap::OcTree , octomap::OcTreeNode >::insertionOptions
inherited

The options used when inserting observations in the map.

Definition at line 134 of file maps/COctoMapBase.h.

◆ likelihoodOptions

TLikelihoodOptions mrpt::maps::COctoMapBase< octomap::OcTree , octomap::OcTreeNode >::likelihoodOptions
inherited

Definition at line 155 of file maps/COctoMapBase.h.

◆ m_private_map_register_id

const size_t mrpt::maps::COctoMap::m_private_map_register_id = mrpt::maps::internal::TMetricMapTypesRegistry::Instance().doRegister( "COctoMap,octoMap" ,& mrpt::maps::COctoMap ::MapDefinition,& mrpt::maps::COctoMap ::internal_CreateFromMapDefinition)
static

ID used to initialize class registration (just ignore it)

Definition at line 52 of file maps/COctoMap.h.

◆ renderingOptions

TRenderingOptions mrpt::maps::COctoMapBase< octomap::OcTree , octomap::OcTreeNode >::renderingOptions
inherited

Definition at line 182 of file maps/COctoMapBase.h.




Page generated by Doxygen 1.8.14 for MRPT 1.5.6 Git: 4c65e8431 Tue Apr 24 08:18:17 2018 +0200 at lun oct 28 01:35:26 CET 2019