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 | Protected Attributes
mrpt::maps::CBeaconMap Class Reference

Detailed Description

A class for storing a map of 3D probabilistic beacons, using a Montecarlo, Gaussian, or Sum of Gaussians (SOG) representation (for range-only SLAM).


The individual beacons are defined as mrpt::maps::CBeacon objects.
When invoking CBeaconMap::insertObservation(), landmarks will be extracted and fused into the map. The only currently supported observation type is mrpt::obs::CObservationBeaconRanges. See insertionOptions and likelihoodOptions for parameters used when creating and fusing beacon landmarks.
Use "TInsertionOptions::insertAsMonteCarlo" to select between 2 different behaviors:

Refer to the papers: []

See also
CMetricMap

Definition at line 44 of file maps/CBeaconMap.h.

#include <mrpt/maps/CBeaconMap.h>

Inheritance diagram for mrpt::maps::CBeaconMap:
Inheritance graph

Classes

struct  TInsertionOptions
 This struct contains data for choosing the method by which new beacons are inserted in the map. More...
 
struct  TLikelihoodOptions
 With this struct options are provided to the likelihood computations. More...
 
struct  TMapDefinition
 
struct  TMapDefinitionBase
 

Public Types

typedef std::deque< CBeaconTSequenceBeacons
 
typedef std::deque< CBeacon >::iterator iterator
 
typedef std::deque< CBeacon >::const_iterator const_iterator
 

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 ()
 
 CBeaconMap ()
 Constructor. More...
 
void resize (const size_t N)
 Resize the number of SOG modes. More...
 
const CBeaconoperator[] (size_t i) const
 Access to individual beacons. More...
 
const CBeaconget (size_t i) const
 Access to individual beacons. More...
 
CBeaconoperator[] (size_t i)
 Access to individual beacons. More...
 
CBeaconget (size_t i)
 Access to individual beacons. More...
 
iterator begin ()
 
const_iterator begin () const
 
iterator end ()
 
const_iterator end () const
 
void push_back (const CBeacon &m)
 Inserts a copy of the given mode into the SOG. More...
 
float compute3DMatchingRatio (const mrpt::maps::CMetricMap *otherMap, const mrpt::poses::CPose3D &otherMapPose, const TMatchingRatioParams &params) const MRPT_OVERRIDE
 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...
 
bool saveToMATLABScript3D (const std::string &file, const char *style="b", float confInterval=0.95f) const
 Save to a MATLAB script which displays 3D error ellipses for the map. More...
 
size_t size () const
 Returns the stored landmarks count. More...
 
virtual void determineMatching2D (const mrpt::maps::CMetricMap *otherMap, const mrpt::poses::CPose2D &otherMapPose, mrpt::utils::TMatchingPairList &correspondences, const TMatchingParams &params, TMatchingExtraResults &extraResults) const MRPT_OVERRIDE
 Computes the matching between this and another 2D point map, which includes finding: More...
 
void computeMatchingWith3DLandmarks (const mrpt::maps::CBeaconMap *otherMap, mrpt::utils::TMatchingPairList &correspondences, float &correspondencesRatio, std::vector< bool > &otherCorrespondences) const
 Perform a search for correspondences between "this" and another lansmarks map: Firsly, the landmarks' descriptor is used to find correspondences, then inconsistent ones removed by looking at their 3D poses. More...
 
void changeCoordinatesReference (const mrpt::poses::CPose3D &newOrg)
 Changes the reference system of the map to a given 3D pose. More...
 
void changeCoordinatesReference (const mrpt::poses::CPose3D &newOrg, const mrpt::maps::CBeaconMap *otherMap)
 Changes the reference system of the map "otherMap" and save the result in "this" map. More...
 
bool isEmpty () const MRPT_OVERRIDE
 Returns true if the map is empty/no observation has been inserted. More...
 
void simulateBeaconReadings (const mrpt::poses::CPose3D &in_robotPose, const mrpt::poses::CPoint3D &in_sensorLocationOnRobot, mrpt::obs::CObservationBeaconRanges &out_Observations) const
 Simulates a reading toward each of the beacons in the landmarks map, if any. More...
 
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...
 
void saveToTextFile (const std::string &fil) const
 Save a text file with a row per beacon, containing this 11 elements: More...
 
void getAs3DObject (mrpt::opengl::CSetOfObjectsPtr &outObj) const MRPT_OVERRIDE
 Returns a 3D object representing the map. More...
 
const CBeacongetBeaconByID (CBeacon::TBeaconID id) const
 Returns a pointer to the beacon with the given ID, or NULL if it does not exist. More...
 
CBeacongetBeaconByID (CBeacon::TBeaconID id)
 Returns a pointer to the beacon with the given ID, or NULL if it does not exist. 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 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 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...
 

Static Public Member Functions

static voidoperator new (size_t size, void *ptr)
 

Public Attributes

mrpt::maps::CBeaconMap::TLikelihoodOptions likelihoodOptions
 
mrpt::maps::CBeaconMap::TInsertionOptions insertionOptions
 
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

virtual void internal_clear () MRPT_OVERRIDE
 Internal method called by clear() More...
 
virtual bool internal_insertObservation (const mrpt::obs::CObservation *obs, const mrpt::poses::CPose3D *robotPose=NULL) MRPT_OVERRIDE
 Internal method called by insertObservation() More...
 
double internal_computeObservationLikelihood (const mrpt::obs::CObservation *obs, const mrpt::poses::CPose3D &takenFrom) MRPT_OVERRIDE
 Internal method called by computeObservationLikelihood() 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...
 

Protected Attributes

TSequenceBeacons m_beacons
 The individual beacons. More...
 

RTTI stuff

typedef CBeaconMapPtr Ptr
 
typedef CBeaconMapPtr ConstPtr
 
static mrpt::utils::CLASSINIT _init_CBeaconMap
 
static mrpt::utils::TRuntimeClassId classCBeaconMap
 
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 CBeaconMapPtr Create ()
 

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

static const size_t m_private_map_register_id = mrpt::maps::internal::TMetricMapTypesRegistry::Instance().doRegister( "CBeaconMap,beaconMap" ,& mrpt::maps::CBeaconMap ::MapDefinition,& mrpt::maps::CBeaconMap ::internal_CreateFromMapDefinition)
 ID used to initialize class registration (just ignore it) More...
 
static mrpt::maps::TMetricMapInitializerMapDefinition ()
 Returns default map definition initializer. More...
 
static CBeaconMapCreateFromMapDefinition (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

◆ const_iterator

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

◆ ConstPtr

typedef CBeaconMapPtr mrpt::maps::CBeaconMap::ConstPtr

Definition at line 47 of file maps/CBeaconMap.h.

◆ iterator

Definition at line 51 of file maps/CBeaconMap.h.

◆ Ptr

typedef CBeaconMapPtr mrpt::maps::CBeaconMap::Ptr

A typedef for the associated smart pointer

Definition at line 47 of file maps/CBeaconMap.h.

◆ TSequenceBeacons

Definition at line 50 of file maps/CBeaconMap.h.

Constructor & Destructor Documentation

◆ CBeaconMap()

CBeaconMap::CBeaconMap ( )

Constructor.

Definition at line 82 of file CBeaconMap.cpp.

Member Function Documentation

◆ _GetBaseClass()

static const mrpt::utils::TRuntimeClassId* mrpt::maps::CBeaconMap::_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.

◆ begin() [1/2]

iterator mrpt::maps::CBeaconMap::begin ( )
inline

Definition at line 89 of file maps/CBeaconMap.h.

◆ begin() [2/2]

const_iterator mrpt::maps::CBeaconMap::begin ( ) const
inline

Definition at line 90 of file maps/CBeaconMap.h.

◆ 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().

◆ changeCoordinatesReference() [1/2]

void CBeaconMap::changeCoordinatesReference ( const mrpt::poses::CPose3D newOrg)

Changes the reference system of the map to a given 3D pose.

Definition at line 754 of file CBeaconMap.cpp.

Referenced by compute3DMatchingRatio(), and determineMatching2D().

◆ changeCoordinatesReference() [2/2]

void CBeaconMap::changeCoordinatesReference ( const mrpt::poses::CPose3D newOrg,
const mrpt::maps::CBeaconMap otherMap 
)

Changes the reference system of the map "otherMap" and save the result in "this" map.

Definition at line 764 of file CBeaconMap.cpp.

◆ 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 CBeaconMap::compute3DMatchingRatio ( const mrpt::maps::CMetricMap otherMap,
const mrpt::poses::CPose3D otherMapPose,
const TMatchingRatioParams params 
) const
virtual

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 from mrpt::maps::CMetricMap.

Definition at line 1126 of file CBeaconMap.cpp.

References changeCoordinatesReference(), CLASS_ID, computeMatchingWith3DLandmarks(), mrpt::maps::CMetricMap::GetRuntimeClass(), MRPT_END, and MRPT_START.

◆ computeMatchingWith3DLandmarks()

void CBeaconMap::computeMatchingWith3DLandmarks ( const mrpt::maps::CBeaconMap otherMap,
mrpt::utils::TMatchingPairList correspondences,
float &  correspondencesRatio,
std::vector< bool > &  otherCorrespondences 
) const

Perform a search for correspondences between "this" and another lansmarks map: Firsly, the landmarks' descriptor is used to find correspondences, then inconsistent ones removed by looking at their 3D poses.

Parameters
otherMap[IN] The other map.
correspondences[OUT] The matched pairs between maps.
correspondencesRatio[OUT] This is NumberOfMatchings / NumberOfLandmarksInTheAnotherMap
otherCorrespondences[OUT] Will be returned with a vector containing "true" for the indexes of the other map's landmarks with a correspondence.

Definition at line 775 of file CBeaconMap.cpp.

References m_beacons, MRPT_END, MRPT_START, mrpt::utils::TMatchingPair::other_idx, mrpt::utils::TMatchingPair::other_x, mrpt::utils::TMatchingPair::other_y, mrpt::utils::TMatchingPair::other_z, mrpt::utils::TMatchingPair::this_idx, mrpt::utils::TMatchingPair::this_x, mrpt::utils::TMatchingPair::this_y, mrpt::utils::TMatchingPair::this_z, mrpt::poses::CPoseOrPoint< DERIVEDCLASS >::x(), and mrpt::poses::CPoseOrPoint< DERIVEDCLASS >::y().

Referenced by 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 CBeaconMapPtr mrpt::maps::CBeaconMap::Create ( )
static

◆ CreateFromMapDefinition()

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

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

Definition at line 42 of file CBeaconMap.cpp.

◆ CreateObject()

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

◆ determineMatching2D()

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

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 from mrpt::maps::CMetricMap.

Definition at line 719 of file CBeaconMap.cpp.

References ASSERT_, changeCoordinatesReference(), CLASS_ID, mrpt::maps::CMetricMap::GetRuntimeClass(), MRPT_END, MRPT_START, and MRPT_UNUSED_PARAM.

◆ 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::CBeaconMap::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().

◆ end() [1/2]

iterator mrpt::maps::CBeaconMap::end ( )
inline

Definition at line 91 of file maps/CBeaconMap.h.

◆ end() [2/2]

const_iterator mrpt::maps::CBeaconMap::end ( ) const
inline

Definition at line 92 of file maps/CBeaconMap.h.

◆ get() [1/2]

const CBeacon& mrpt::maps::CBeaconMap::get ( size_t  i) const
inline

Access to individual beacons.

Definition at line 74 of file maps/CBeaconMap.h.

References ASSERT_.

◆ get() [2/2]

CBeacon& mrpt::maps::CBeaconMap::get ( size_t  i)
inline

Access to individual beacons.

Definition at line 84 of file maps/CBeaconMap.h.

References ASSERT_.

◆ getAs3DObject()

void CBeaconMap::getAs3DObject ( mrpt::opengl::CSetOfObjectsPtr &  outObj) 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

◆ getBeaconByID() [1/2]

const CBeacon * CBeaconMap::getBeaconByID ( CBeacon::TBeaconID  id) const

Returns a pointer to the beacon with the given ID, or NULL if it does not exist.

Definition at line 1161 of file CBeaconMap.cpp.

References m_beacons.

◆ getBeaconByID() [2/2]

CBeacon * CBeaconMap::getBeaconByID ( CBeacon::TBeaconID  id)

Returns a pointer to the beacon with the given ID, or NULL if it does not exist.

Definition at line 1172 of file CBeaconMap.cpp.

References m_beacons.

◆ GetRuntimeClass()

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

Returns information about the class of an object in runtime.

Reimplemented from mrpt::maps::CMetricMap.

◆ 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().

◆ internal_clear()

void CBeaconMap::internal_clear ( )
protectedvirtual

Internal method called by clear()

Implements mrpt::maps::CMetricMap.

Definition at line 92 of file CBeaconMap.cpp.

◆ internal_computeObservationLikelihood()

double CBeaconMap::internal_computeObservationLikelihood ( const mrpt::obs::CObservation obs,
const mrpt::poses::CPose3D takenFrom 
)
protectedvirtual

◆ internal_CreateFromMapDefinition()

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

◆ internal_insertObservation()

bool CBeaconMap::internal_insertObservation ( const mrpt::obs::CObservation obs,
const mrpt::poses::CPose3D robotPose = NULL 
)
protectedvirtual

Internal method called by insertObservation()

Implements mrpt::maps::CMetricMap.

Definition at line 346 of file CBeaconMap.cpp.

References ASSERT_, mrpt::poses::CPointPDFSOG::begin(), CLASS_ID, mrpt::poses::CPointPDFParticles::clear(), mrpt::poses::CPointPDFGaussian::cov, DEG2RAD, mrpt::poses::CPoseOrPoint< DERIVEDCLASS >::distance3DTo(), mrpt::poses::CPoseOrPoint< DERIVEDCLASS >::distanceTo(), mrpt::random::CRandomGenerator::drawGaussian1D(), mrpt::random::CRandomGenerator::drawUniform(), mrpt::poses::CPointPDFSOG::end(), mrpt::poses::CPointPDFSOG::erase(), mrpt::bayes::CParticleFilterDataImpl< Derived, particle_list_t >::ESS(), mrpt::maps::CBeacon::generateRingSOG(), mrpt::poses::CPointPDFParticles::getCovarianceAndMean(), mrpt::poses::CPointPDFSOG::getCovarianceAndMean(), mrpt::obs::CObservation::GetRuntimeClass(), mrpt::bayes::CParticleFilterData< T >::getWeights(), mrpt::maps::CBeacon::m_ID, mrpt::maps::CBeacon::m_locationGauss, mrpt::maps::CBeacon::m_locationMC, mrpt::maps::CBeacon::m_locationSOG, mrpt::bayes::CParticleFilterData< T >::m_particles, M_PI, mrpt::maps::CBeacon::m_typePDF, mrpt::utils::max3(), mrpt::poses::CPointPDFGaussian::mean, MRPT_END, MRPT_START, mrpt::poses::CPointPDFSOG::normalizeWeights(), mrpt::maps::CBeacon::pdfGauss, mrpt::maps::CBeacon::pdfMonteCarlo, mrpt::maps::CBeacon::pdfSOG, mrpt::bayes::CParticleFilterDataImpl< Derived, particle_list_t >::performSubstitution(), R, mrpt::random::randomGenerator, mrpt::utils::round(), mrpt::obs::CObservationBeaconRanges::sensedData, mrpt::poses::CPointPDFParticles::setSize(), mrpt::math::square(), THROW_EXCEPTION, mrpt::poses::CPoseOrPoint< DERIVEDCLASS >::x(), mrpt::poses::CPoseOrPoint< DERIVEDCLASS >::x_incr(), mrpt::poses::CPoseOrPoint< DERIVEDCLASS >::y(), and mrpt::poses::CPoseOrPoint< DERIVEDCLASS >::y_incr().

◆ isEmpty()

bool CBeaconMap::isEmpty ( ) const
virtual

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

Implements mrpt::maps::CMetricMap.

Definition at line 984 of file CBeaconMap.cpp.

References size().

◆ 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::CBeaconMap::MapDefinition ( )
static

Returns default map definition initializer.

See mrpt::maps::TMetricMapInitializer

Definition at line 42 of file CBeaconMap.cpp.

◆ operator delete() [1/3]

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

Definition at line 47 of file maps/CBeaconMap.h.

◆ operator delete() [2/3]

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

Definition at line 47 of file maps/CBeaconMap.h.

◆ operator delete() [3/3]

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

Definition at line 47 of file maps/CBeaconMap.h.

◆ operator delete[]()

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

Definition at line 47 of file maps/CBeaconMap.h.

◆ operator new() [1/3]

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

Definition at line 47 of file maps/CBeaconMap.h.

◆ operator new() [2/3]

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

Definition at line 47 of file maps/CBeaconMap.h.

◆ operator new() [3/3]

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

Definition at line 47 of file maps/CBeaconMap.h.

◆ operator new[]()

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

Definition at line 47 of file maps/CBeaconMap.h.

◆ operator[]() [1/2]

const CBeacon& mrpt::maps::CBeaconMap::operator[] ( size_t  i) const
inline

Access to individual beacons.

Definition at line 69 of file maps/CBeaconMap.h.

References ASSERT_.

◆ operator[]() [2/2]

CBeacon& mrpt::maps::CBeaconMap::operator[] ( size_t  i)
inline

Access to individual beacons.

Definition at line 79 of file maps/CBeaconMap.h.

References ASSERT_.

◆ publishEvent()

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

◆ push_back()

void mrpt::maps::CBeaconMap::push_back ( const CBeacon m)
inline

Inserts a copy of the given mode into the SOG.

Definition at line 95 of file maps/CBeaconMap.h.

◆ readFromStream()

void CBeaconMap::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 141 of file CBeaconMap.cpp.

References mrpt::utils::clear(), MRPT_THROW_UNKNOWN_SERIALIZATION_VERSION, and version.

◆ resize()

void CBeaconMap::resize ( const size_t  N)

Resize the number of SOG modes.

Definition at line 108 of file CBeaconMap.cpp.

◆ saveMetricMapRepresentationToFile()

void CBeaconMap::saveMetricMapRepresentationToFile ( const std::string filNamePrefix) const
virtual

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).

In the case of this class, these files are generated:

  • "filNamePrefix"+"_3D.m": A script for MATLAB for drawing landmarks as 3D ellipses.
  • "filNamePrefix"+"_3D.3DScene": A 3D scene with a "ground plane grid" and the set of ellipsoids in 3D.
  • "filNamePrefix"+"_covs.m": A textual representation (see saveToTextFile)

Implements mrpt::maps::CMetricMap.

Definition at line 1035 of file CBeaconMap.cpp.

References mrpt::opengl::CSetOfObjects::Create(), mrpt::opengl::CGridPlaneXY::Create(), mrpt::system::os::fclose(), mrpt::system::os::fopen(), mrpt::system::os::fprintf(), getAs3DObject(), mrpt::opengl::COpenGLScene::insert(), m_beacons, MRPT_END, MRPT_START, mrpt::maps::CBeacon::pdfGauss, mrpt::maps::CBeacon::pdfMonteCarlo, mrpt::maps::CBeacon::pdfSOG, saveToMATLABScript3D(), and saveToTextFile().

◆ saveToMATLABScript3D()

bool CBeaconMap::saveToMATLABScript3D ( const std::string file,
const char *  style = "b",
float  confInterval = 0.95f 
) const

Save to a MATLAB script which displays 3D error ellipses for the map.

Parameters
fileThe name of the file to save the script to.
styleThe MATLAB-like string for the style of the lines (see 'help plot' in MATLAB for posibilities)
stdCountThe ellipsoids will be drawn from the center to a given confidence interval in [0,1], e.g. 2 sigmas=0.95 (default is 2std = 0.95 confidence intervals)
Returns
Returns false if any error occured, true elsewere.

Definition at line 849 of file CBeaconMap.cpp.

References mrpt::system::os::fclose(), mrpt::system::os::fopen(), mrpt::system::os::fprintf(), mrpt::utils::CStringList::getText(), and MRPT_UNUSED_PARAM.

Referenced by saveMetricMapRepresentationToFile().

◆ saveToTextFile()

void CBeaconMap::saveToTextFile ( const std::string fil) const

Save a text file with a row per beacon, containing this 11 elements:

  • X Y Z: Mean values
  • VX VY VZ: Variances of each dimension (C11, C22, C33)
  • DET2D DET3D: Determinant of the 2D and 3D covariance matrixes.
  • C12, C13, C23: Cross covariances

Definition at line 1186 of file CBeaconMap.cpp.

References ASSERT_, mrpt::system::os::fclose(), mrpt::system::os::fopen(), mrpt::system::os::fprintf(), m_beacons, MRPT_END, MRPT_START, and mrpt::math::square().

Referenced by saveMetricMapRepresentationToFile().

◆ simulateBeaconReadings()

void CBeaconMap::simulateBeaconReadings ( const mrpt::poses::CPose3D in_robotPose,
const mrpt::poses::CPoint3D in_sensorLocationOnRobot,
mrpt::obs::CObservationBeaconRanges out_Observations 
) const

Simulates a reading toward each of the beacons in the landmarks map, if any.

Parameters
in_robotPoseThis robot pose is used to simulate the ranges to each beacon.
in_sensorLocationOnRobotThe 3D position of the sensor on the robot
out_ObservationsThe results will be stored here. NOTICE that the fields "CObservationBeaconRanges::minSensorDistance","CObservationBeaconRanges::maxSensorDistance" and "CObservationBeaconRanges::stdError" MUST BE FILLED OUT before calling this function. An observation will be generated for each beacon in the map, but notice that some of them may be missed if out of the sensor maximum range.

Definition at line 992 of file CBeaconMap.cpp.

References mrpt::obs::CObservationBeaconRanges::TMeasurement::beaconID, mrpt::poses::CPoseOrPoint< DERIVEDCLASS >::distanceTo(), mrpt::random::CRandomGenerator::drawGaussian1D(), m_beacons, mrpt::obs::CObservationBeaconRanges::minSensorDistance, mrpt::random::randomGenerator, mrpt::obs::CObservationBeaconRanges::sensedData, mrpt::obs::CObservationBeaconRanges::TMeasurement::sensedDistance, mrpt::obs::CObservationBeaconRanges::TMeasurement::sensorLocationOnRobot, and mrpt::obs::CObservationBeaconRanges::stdError.

◆ size()

size_t CBeaconMap::size ( ) const

Returns the stored landmarks count.

Definition at line 100 of file CBeaconMap.cpp.

Referenced by isEmpty().

◆ 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.

◆ 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 CBeaconMap::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 118 of file CBeaconMap.cpp.

References begin(), and version.

Member Data Documentation

◆ _init_CBeaconMap

mrpt::utils::CLASSINIT mrpt::maps::CBeaconMap::_init_CBeaconMap
staticprotected

Definition at line 47 of file maps/CBeaconMap.h.

◆ classCBeaconMap

mrpt::utils::TRuntimeClassId mrpt::maps::CBeaconMap::classCBeaconMap
static

Definition at line 47 of file maps/CBeaconMap.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.

◆ 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::CBeaconMap::classinfo
static

Definition at line 47 of file maps/CBeaconMap.h.

◆ genericMapParams

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

◆ insertionOptions

mrpt::maps::CBeaconMap::TInsertionOptions mrpt::maps::CBeaconMap::insertionOptions

◆ likelihoodOptions

mrpt::maps::CBeaconMap::TLikelihoodOptions mrpt::maps::CBeaconMap::likelihoodOptions

◆ m_beacons

TSequenceBeacons mrpt::maps::CBeaconMap::m_beacons
protected

◆ m_private_map_register_id

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

ID used to initialize class registration (just ignore it)

Definition at line 259 of file maps/CBeaconMap.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