MRPT
2.0.1
|
The class for storing "landmarks" (visual or laser-scan-extracted features,...)
The descriptors for each kind of descriptor are stored in the vector "features", which will typically consists of only 1 element, or 2 elements for landmarks obtained from stereo images.
Definition at line 35 of file CLandmark.h.
#include <mrpt/maps/CLandmark.h>
Public Types | |
using | TLandmarkID = int64_t |
The type for the IDs of landmarks. More... | |
Public Member Functions | |
void | getPose (mrpt::poses::CPointPDFGaussian &p) const |
Returns the pose as an object: More... | |
void | getPose (mrpt::poses::CPoint3D &p, mrpt::math::CMatrixDouble &COV) const |
void | setPose (const mrpt::poses::CPointPDFGaussian &p) |
Sets the pose from an object: More... | |
mrpt::vision::TKeyPointMethod | getType () const |
Gets the type of the first feature in its feature vector. More... | |
void | createOneFeature () |
Creates one feature in the vector "features", calling the appropriate constructor of the smart pointer, so after calling this method "features[0]" is a valid pointer to a CFeature object. More... | |
CLandmark ()=default | |
Default constructor. More... | |
~CLandmark () override | |
Virtual destructor. More... | |
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 |
Makes a deep copy of the object and returns a smart pointer to it. More... | |
Public Attributes | |
std::vector< mrpt::vision::CFeature > | features |
The set of features from which the landmark comes. More... | |
mrpt::math::TPoint3D | pose_mean |
The mean of the landmark 3D position. More... | |
mrpt::math::TPoint3D | normal |
The "normal" to the landmark, i.e. More... | |
float | pose_cov_11 {} |
float | pose_cov_22 {} |
float | pose_cov_33 {} |
float | pose_cov_12 {} |
float | pose_cov_13 {} |
float | pose_cov_23 {} |
TLandmarkID | ID {INVALID_LANDMARK_ID} |
An ID for the landmark (see details next...) This ID was introduced in the version 3 of this class (21/NOV/2006), and its aim is to provide a way for easily establishing correspondences between landmarks detected in sequential image frames. More... | |
mrpt::system::TTimeStamp | timestampLastSeen {INVALID_TIMESTAMP} |
The last time that this landmark was observed. More... | |
uint32_t | seenTimesCount {0} |
The number of times that this landmark has been seen. More... | |
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... | |
CSerializable virtual methods | |
virtual void | serializeTo (CSchemeArchiveBase &out) const |
Virtual method for writing (serializing) to an abstract schema based archive. More... | |
virtual void | serializeFrom (CSchemeArchiveBase &in) |
Virtual method for reading (deserializing) from an abstract schema based archive. More... | |
Static Protected Attributes | |
static TLandmarkID | m_counterIDs |
Auxiliary variable. More... | |
RTTI stuff | |
using | Ptr = std::shared_ptr< mrpt::maps ::CLandmark > |
using | ConstPtr = std::shared_ptr< const mrpt::maps ::CLandmark > |
using | UniquePtr = std::unique_ptr< mrpt::maps ::CLandmark > |
using | ConstUniquePtr = std::unique_ptr< const mrpt::maps ::CLandmark > |
static const mrpt::rtti::TRuntimeClassId | runtimeClassId |
static constexpr const char * | className = "mrpt::maps" "::" "CLandmark" |
static const mrpt::rtti::TRuntimeClassId * | _GetBaseClass () |
static constexpr auto | getClassName () |
static const mrpt::rtti::TRuntimeClassId & | GetRuntimeClassIdStatic () |
static std::shared_ptr< CObject > | CreateObject () |
template<typename... Args> | |
static Ptr | Create (Args &&... args) |
template<typename Alloc , typename... Args> | |
static Ptr | CreateAlloc (const Alloc &alloc, 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::maps::CLandmark::ConstPtr = std::shared_ptr<const mrpt::maps :: CLandmark > |
Definition at line 37 of file CLandmark.h.
using mrpt::maps::CLandmark::ConstUniquePtr = std::unique_ptr<const mrpt::maps :: CLandmark > |
Definition at line 37 of file CLandmark.h.
using mrpt::maps::CLandmark::Ptr = std::shared_ptr< mrpt::maps :: CLandmark > |
A type for the associated smart pointer
Definition at line 37 of file CLandmark.h.
using mrpt::maps::CLandmark::TLandmarkID = int64_t |
The type for the IDs of landmarks.
Definition at line 41 of file CLandmark.h.
using mrpt::maps::CLandmark::UniquePtr = std::unique_ptr< mrpt::maps :: CLandmark > |
Definition at line 37 of file CLandmark.h.
|
default |
Default constructor.
|
overridedefault |
Virtual destructor.
|
staticprotected |
|
overridevirtual |
Returns a deep copy (clone) of the object, indepently of its class.
Implements mrpt::rtti::CObject.
|
inlinestatic |
Definition at line 37 of file CLandmark.h.
|
inlinestatic |
Definition at line 37 of file CLandmark.h.
|
static |
|
inline |
Creates one feature in the vector "features", calling the appropriate constructor of the smart pointer, so after calling this method "features[0]" is a valid pointer to a CFeature object.
Definition at line 112 of file CLandmark.h.
References features.
Referenced by mrpt::maps::CLandmarksMap::internal_CreateFromMapDefinition(), and mrpt::maps::CLandmarksMap::loadOccupancyFeaturesFrom2DRangeScan().
|
inlinestatic |
Definition at line 37 of file CLandmark.h.
|
inlineinherited |
Makes a deep copy of the object and returns a smart pointer to it.
Definition at line 204 of file CObject.h.
References mrpt::rtti::CObject::clone().
Referenced by mrpt::obs::CRawlog::insert().
|
inlinestatic |
Definition at line 37 of file CLandmark.h.
void CLandmark::getPose | ( | mrpt::poses::CPointPDFGaussian & | p | ) | const |
Returns the pose as an object:
Definition at line 32 of file CLandmark.cpp.
References mrpt::poses::CPointPDFGaussian::cov, mrpt::poses::CPointPDFGaussian::mean, mrpt::poses::CPoseOrPoint< DERIVEDCLASS, DIM >::x(), and mrpt::poses::CPoseOrPoint< DERIVEDCLASS, DIM >::y().
Referenced by mrpt::maps::CLandmarksMap::computeLikelihood_RSLC_2007(), mrpt::maps::CLandmarksMap::fuseWith(), and getPose().
|
inline |
Definition at line 87 of file CLandmark.h.
References mrpt::poses::CPointPDFGaussian::cov, getPose(), and mrpt::poses::CPointPDFGaussian::mean.
|
overridevirtual |
Returns information about the class of an object in runtime.
Reimplemented from mrpt::serialization::CSerializable.
|
static |
|
inline |
Gets the type of the first feature in its feature vector.
The vector must not be empty.
Definition at line 102 of file CLandmark.h.
|
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 73 of file CLandmark.cpp.
References MRPT_THROW_UNKNOWN_SERIALIZATION_VERSION, and THROW_EXCEPTION.
|
inlineprotectedvirtualinherited |
Virtual method for reading (deserializing) from an abstract schema based archive.
Definition at line 74 of file CSerializable.h.
References mrpt::serialization::CSerializable::GetRuntimeClass(), and THROW_EXCEPTION.
|
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.
Definition at line 65 of file CLandmark.cpp.
|
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.
Definition at line 66 of file CLandmark.cpp.
References out.
|
inlineprotectedvirtualinherited |
Virtual method for writing (serializing) to an abstract schema based archive.
Definition at line 64 of file CSerializable.h.
References mrpt::serialization::CSerializable::GetRuntimeClass(), and THROW_EXCEPTION.
void CLandmark::setPose | ( | const mrpt::poses::CPointPDFGaussian & | p | ) |
Sets the pose from an object:
Definition at line 51 of file CLandmark.cpp.
References mrpt::poses::CPointPDFGaussian::cov, mrpt::d2f(), mrpt::poses::CPointPDFGaussian::mean, mrpt::poses::CPoseOrPoint< DERIVEDCLASS, DIM >::x(), and mrpt::poses::CPoseOrPoint< DERIVEDCLASS, DIM >::y().
Referenced by mrpt::maps::CLandmarksMap::fuseWith().
|
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 90 of file CSerializable.h.
|
static |
Definition at line 37 of file CLandmark.h.
std::vector<mrpt::vision::CFeature> mrpt::maps::CLandmark::features |
The set of features from which the landmark comes.
Definition at line 44 of file CLandmark.h.
Referenced by mrpt::maps::CLandmarksMap::changeCoordinatesReference(), createOneFeature(), getType(), mrpt::maps::CLandmarksMap::internal_CreateFromMapDefinition(), mrpt::maps::CLandmarksMap::loadOccupancyFeaturesFrom2DRangeScan(), mrpt::maps::CLandmarksMap::loadSiftFeaturesFromImageObservation(), mrpt::vision::projectMatchedFeatures(), mrpt::apps::CGridMapAlignerApp::run(), and mrpt::slam::COccupancyGridMapFeatureExtractor::uncached_extractFeatures().
TLandmarkID mrpt::maps::CLandmark::ID {INVALID_LANDMARK_ID} |
An ID for the landmark (see details next...) This ID was introduced in the version 3 of this class (21/NOV/2006), and its aim is to provide a way for easily establishing correspondences between landmarks detected in sequential image frames.
Thus, the management of this field should be:
Note that this field is never fill out automatically, it must be set by the programmer if used.
Definition at line 75 of file CLandmark.h.
Referenced by mrpt::maps::CLandmarksMap::changeCoordinatesReference(), mrpt::maps::CLandmarksMap::internal_CreateFromMapDefinition(), mrpt::vision::projectMatchedFeatures(), and mrpt::slam::COccupancyGridMapFeatureExtractor::uncached_extractFeatures().
|
staticprotected |
mrpt::math::TPoint3D mrpt::maps::CLandmark::normal |
The "normal" to the landmark, i.e.
a unitary 3D vector towards the viewing direction, or a null vector if not applicable
Definition at line 50 of file CLandmark.h.
Referenced by mrpt::maps::CLandmarksMap::changeCoordinatesReference(), mrpt::maps::CLandmarksMap::loadOccupancyFeaturesFrom2DRangeScan(), mrpt::maps::CLandmarksMap::loadSiftFeaturesFromImageObservation(), and mrpt::vision::projectMatchedFeatures().
float mrpt::maps::CLandmark::pose_cov_11 {} |
Definition at line 51 of file CLandmark.h.
Referenced by mrpt::maps::CLandmarksMap::changeCoordinatesReference(), mrpt::maps::CLandmarksMap::internal_CreateFromMapDefinition(), mrpt::maps::CLandmarksMap::loadOccupancyFeaturesFrom2DRangeScan(), mrpt::maps::CLandmarksMap::loadSiftFeaturesFromImageObservation(), mrpt::vision::projectMatchedFeatures(), and mrpt::slam::COccupancyGridMapFeatureExtractor::uncached_extractFeatures().
float mrpt::maps::CLandmark::pose_cov_12 {} |
Definition at line 51 of file CLandmark.h.
Referenced by mrpt::maps::CLandmarksMap::changeCoordinatesReference(), mrpt::maps::CLandmarksMap::internal_CreateFromMapDefinition(), mrpt::maps::CLandmarksMap::loadOccupancyFeaturesFrom2DRangeScan(), mrpt::maps::CLandmarksMap::loadSiftFeaturesFromImageObservation(), mrpt::vision::projectMatchedFeatures(), and mrpt::slam::COccupancyGridMapFeatureExtractor::uncached_extractFeatures().
float mrpt::maps::CLandmark::pose_cov_13 {} |
Definition at line 52 of file CLandmark.h.
Referenced by mrpt::maps::CLandmarksMap::changeCoordinatesReference(), mrpt::maps::CLandmarksMap::internal_CreateFromMapDefinition(), mrpt::maps::CLandmarksMap::loadOccupancyFeaturesFrom2DRangeScan(), mrpt::maps::CLandmarksMap::loadSiftFeaturesFromImageObservation(), mrpt::vision::projectMatchedFeatures(), and mrpt::slam::COccupancyGridMapFeatureExtractor::uncached_extractFeatures().
float mrpt::maps::CLandmark::pose_cov_22 {} |
Definition at line 51 of file CLandmark.h.
Referenced by mrpt::maps::CLandmarksMap::changeCoordinatesReference(), mrpt::maps::CLandmarksMap::internal_CreateFromMapDefinition(), mrpt::maps::CLandmarksMap::loadOccupancyFeaturesFrom2DRangeScan(), mrpt::maps::CLandmarksMap::loadSiftFeaturesFromImageObservation(), mrpt::vision::projectMatchedFeatures(), and mrpt::slam::COccupancyGridMapFeatureExtractor::uncached_extractFeatures().
float mrpt::maps::CLandmark::pose_cov_23 {} |
Definition at line 52 of file CLandmark.h.
Referenced by mrpt::maps::CLandmarksMap::changeCoordinatesReference(), mrpt::maps::CLandmarksMap::internal_CreateFromMapDefinition(), mrpt::maps::CLandmarksMap::loadOccupancyFeaturesFrom2DRangeScan(), mrpt::maps::CLandmarksMap::loadSiftFeaturesFromImageObservation(), mrpt::vision::projectMatchedFeatures(), and mrpt::slam::COccupancyGridMapFeatureExtractor::uncached_extractFeatures().
float mrpt::maps::CLandmark::pose_cov_33 {} |
Definition at line 51 of file CLandmark.h.
Referenced by mrpt::maps::CLandmarksMap::changeCoordinatesReference(), mrpt::maps::CLandmarksMap::internal_CreateFromMapDefinition(), mrpt::maps::CLandmarksMap::loadOccupancyFeaturesFrom2DRangeScan(), mrpt::maps::CLandmarksMap::loadSiftFeaturesFromImageObservation(), mrpt::vision::projectMatchedFeatures(), and mrpt::slam::COccupancyGridMapFeatureExtractor::uncached_extractFeatures().
mrpt::math::TPoint3D mrpt::maps::CLandmark::pose_mean |
The mean of the landmark 3D position.
Definition at line 47 of file CLandmark.h.
Referenced by mrpt::maps::CLandmarksMap::changeCoordinatesReference(), mrpt::maps::CLandmarksMap::computeLikelihood_RSLC_2007(), mrpt::maps::CLandmarksMap::computeLikelihood_SIFT_LandmarkMap(), mrpt::maps::CLandmarksMap::computeMatchingWith3DLandmarks(), mrpt::maps::CLandmarksMap::internal_CreateFromMapDefinition(), mrpt::maps::CLandmarksMap::loadOccupancyFeaturesFrom2DRangeScan(), mrpt::maps::CLandmarksMap::loadSiftFeaturesFromImageObservation(), mrpt::vision::projectMatchedFeatures(), mrpt::maps::CLandmarksMap::TCustomSequenceLandmarks::push_back(), mrpt::apps::CGridMapAlignerApp::run(), mrpt::slam::CRejectionSamplingRangeOnlyLocalization::setParams(), and mrpt::slam::COccupancyGridMapFeatureExtractor::uncached_extractFeatures().
|
staticprotected |
Definition at line 37 of file CLandmark.h.
uint32_t mrpt::maps::CLandmark::seenTimesCount {0} |
The number of times that this landmark has been seen.
Definition at line 81 of file CLandmark.h.
Referenced by mrpt::maps::CLandmarksMap::changeCoordinatesReference(), mrpt::maps::CLandmarksMap::fuseWith(), mrpt::maps::CLandmarksMap::loadOccupancyFeaturesFrom2DRangeScan(), mrpt::maps::CLandmarksMap::loadSiftFeaturesFromImageObservation(), and mrpt::slam::COccupancyGridMapFeatureExtractor::uncached_extractFeatures().
mrpt::system::TTimeStamp mrpt::maps::CLandmark::timestampLastSeen {INVALID_TIMESTAMP} |
The last time that this landmark was observed.
Definition at line 78 of file CLandmark.h.
Referenced by mrpt::maps::CLandmarksMap::changeCoordinatesReference(), mrpt::maps::CLandmarksMap::fuseWith(), mrpt::maps::CLandmarksMap::loadOccupancyFeaturesFrom2DRangeScan(), and mrpt::maps::CLandmarksMap::loadSiftFeaturesFromImageObservation().
Page generated by Doxygen 1.8.14 for MRPT 2.0.1 Git: 0fef1a6d7 Fri Apr 3 23:00:21 2020 +0200 at vie abr 3 23:20:28 CEST 2020 |