MRPT
1.9.9
|
Finds partitions in metric maps based on N-cut graph partition theory.
Definition at line 54 of file CIncrementalMapPartitioner.h.
#include <mrpt/slam/CIncrementalMapPartitioner.h>
Classes | |
struct | TOptions |
Configuration parameters. More... | |
Public Member Functions | |
CIncrementalMapPartitioner () | |
ctor 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... | |
Change Coordinates System | |
Change the coordinate origin of all stored poses Used for consistency with future new poses to enter in the system. | |
void | changeCoordinatesOrigin (const mrpt::poses::CPose3D &newOrigin) |
void | changeCoordinatesOriginPoseIndex (unsigned int newOriginPose) |
The new origin is given by the index of the pose that is to become the new origin. More... | |
void | setSimilarityMethod (similarity_method_t method) |
Select the similarity method to use for newly inserted keyframes. More... | |
void | setSimilarityMethod (similarity_func_t func) |
Sets a custom function for the similarity of new keyframes. More... | |
Access API to internal graph data | |
void | getAs3DScene (mrpt::opengl::CSetOfObjects::Ptr &objs, const std::map< uint32_t, int64_t > *renameIndexes=nullptr) const |
Return a 3D representation of the graph: poses & links between them. More... | |
template<class MATRIX > | |
void | getAdjacencyMatrix (MATRIX &outMatrix) const |
Return a copy of the adjacency matrix. More... | |
const mrpt::math::CMatrixDouble & | getAdjacencyMatrix () const |
Return a const ref to the internal adjacency matrix. More... | |
const mrpt::maps::CSimpleMap * | getSequenceOfFrames () const |
Read-only access to the sequence of Sensory Frames. More... | |
mrpt::maps::CSimpleMap * | getSequenceOfFrames () |
Access to the sequence of Sensory Frames. 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... | |
Static Public Member Functions | |
static std::array< mrpt::system::TConsoleColor, NUMBER_OF_VERBOSITY_LEVELS > & | logging_levels_to_colors () |
Map from VerbosityLevels to their corresponding mrpt::system::TConsoleColor. More... | |
static std::array< std::string, NUMBER_OF_VERBOSITY_LEVELS > & | logging_levels_to_names () |
Map from VerbosityLevels to their corresponding names. 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... | |
Protected Attributes | |
VerbosityLevel | m_min_verbosity_level {LVL_INFO} |
Provided messages with VerbosityLevel smaller than this value shall be ignored. More... | |
Private Attributes | |
mrpt::maps::CSimpleMap | m_individualFrames |
std::deque< mrpt::maps::CMultiMetricMap::Ptr > | m_individualMaps |
mrpt::math::CMatrixD | m_A {0, 0} |
Adjacency matrix. More... | |
std::vector< std::vector< uint32_t > > | m_last_partition |
The last partition. More... | |
bool | m_last_last_partition_are_new_ones {false} |
This will be true after adding new observations, and before an "updatePartitions" is invoked. More... | |
similarity_func_t | m_sim_func |
RTTI stuff | |
using | Ptr = std::shared_ptr< mrpt::slam ::CIncrementalMapPartitioner > |
using | ConstPtr = std::shared_ptr< const mrpt::slam ::CIncrementalMapPartitioner > |
using | UniquePtr = std::unique_ptr< mrpt::slam ::CIncrementalMapPartitioner > |
using | ConstUniquePtr = std::unique_ptr< const mrpt::slam ::CIncrementalMapPartitioner > |
static const mrpt::rtti::TRuntimeClassId | runtimeClassId |
static constexpr const char * | className = "mrpt::slam" "::" "CIncrementalMapPartitioner" |
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... | |
Main map partition API | |
TOptions | options |
Algorithm parameters. More... | |
void | clear () |
uint32_t | addMapFrame (const mrpt::obs::CSensoryFrame &frame, const mrpt::poses::CPose3DPDF &robotPose3D) |
Insert a new keyframe to the graph. More... | |
void | updatePartitions (std::vector< std::vector< uint32_t >> &partitions) |
Recalculate the map/graph partitions. More... | |
size_t | getNodesCount () |
Get the total node count currently in the internal map/graph. More... | |
void | removeSetOfNodes (std::vector< uint32_t > indexesToRemove, bool changeCoordsRef=true) |
Remove a list of keyframes, with indices as returned by addMapFrame() More... | |
Logging methods | |
bool | logging_enable_console_output {true} |
[Default=true] Set it to false in case you don't want the logged messages to be dumped to the output automatically. More... | |
bool | logging_enable_keep_record {false} |
[Default=false] Enables storing all messages into an internal list. More... | |
void | logStr (const VerbosityLevel level, std::string_view msg_str) const |
Main method to add the specified message string to the logger. More... | |
void | logFmt (const VerbosityLevel level, const char *fmt,...) const MRPT_printf_format_check(3 |
Alternative logging method, which mimics the printf behavior. More... | |
void void | logCond (const VerbosityLevel level, bool cond, const std::string &msg_str) const |
Log the given message only if the condition is satisfied. More... | |
void | setLoggerName (const std::string &name) |
Set the name of the COutputLogger instance. More... | |
std::string | getLoggerName () const |
Return the name of the COutputLogger instance. More... | |
void | setMinLoggingLevel (const VerbosityLevel level) |
Set the minimum logging level for which the incoming logs are going to be taken into account. More... | |
void | setVerbosityLevel (const VerbosityLevel level) |
alias of setMinLoggingLevel() More... | |
VerbosityLevel | getMinLoggingLevel () const |
bool | isLoggingLevelVisible (VerbosityLevel level) const |
void | getLogAsString (std::string &log_contents) const |
Fill the provided string with the contents of the logger's history in std::string representation. More... | |
std::string | getLogAsString () const |
Get the history of COutputLogger instance in a string representation. More... | |
void | writeLogToFile (const std::string *fname_in=nullptr) const |
Write the contents of the COutputLogger instance to an external file. More... | |
void | dumpLogToConsole () const |
Dump the current contents of the COutputLogger instance in the terminal window. More... | |
std::string | getLoggerLastMsg () const |
Return the last Tmsg instance registered in the logger history. More... | |
void | getLoggerLastMsg (std::string &msg_str) const |
Fill inputtted string with the contents of the last message in history. More... | |
void | loggerReset () |
Reset the contents of the logger instance. More... | |
void | logRegisterCallback (output_logger_callback_t userFunc) |
bool | logDeregisterCallback (output_logger_callback_t userFunc) |
using mrpt::slam::CIncrementalMapPartitioner::ConstPtr = std::shared_ptr<const mrpt::slam :: CIncrementalMapPartitioner > |
Definition at line 58 of file CIncrementalMapPartitioner.h.
using mrpt::slam::CIncrementalMapPartitioner::ConstUniquePtr = std::unique_ptr<const mrpt::slam :: CIncrementalMapPartitioner > |
Definition at line 58 of file CIncrementalMapPartitioner.h.
using mrpt::slam::CIncrementalMapPartitioner::Ptr = std::shared_ptr< mrpt::slam :: CIncrementalMapPartitioner > |
A type for the associated smart pointer
Definition at line 58 of file CIncrementalMapPartitioner.h.
using mrpt::slam::CIncrementalMapPartitioner::UniquePtr = std::unique_ptr< mrpt::slam :: CIncrementalMapPartitioner > |
Definition at line 58 of file CIncrementalMapPartitioner.h.
|
inline |
ctor
Definition at line 62 of file CIncrementalMapPartitioner.h.
|
staticprotected |
uint32_t CIncrementalMapPartitioner::addMapFrame | ( | const mrpt::obs::CSensoryFrame & | frame, |
const mrpt::poses::CPose3DPDF & | robotPose3D | ||
) |
Insert a new keyframe to the graph.
Call this method each time a new observation is added to the map/graph. Afterwards, call updatePartitions() to get the updated partitions.
frame | The sensed data |
robotPose | An estimation of the robot global pose. |
Definition at line 120 of file CIncrementalMapPartitioner.cpp.
References ASSERT_, eval_similarity_metric_map_matching(), eval_similarity_observation_overlap(), mrpt::obs::CSensoryFrame::insertObservationsInto(), mrpt::slam::map_keyframe_t::kf_id, mrpt::slam::map_keyframe_t::metric_map, MRPT_END, MRPT_START, mrpt::slam::map_keyframe_t::raw_observations, mrpt::slam::smCUSTOM_FUNCTION, mrpt::slam::smMETRIC_MAP_MATCHING, mrpt::slam::smOBSERVATION_OVERLAP, and THROW_EXCEPTION.
Referenced by mrpt::hmtslam::CHMTSLAM::areaAbstraction(), mrpt::slam::CRangeBearingKFSLAM::processActionObservation(), and TEST().
void CIncrementalMapPartitioner::changeCoordinatesOrigin | ( | const mrpt::poses::CPose3D & | newOrigin | ) |
Definition at line 339 of file CIncrementalMapPartitioner.cpp.
void CIncrementalMapPartitioner::changeCoordinatesOriginPoseIndex | ( | unsigned int | newOriginPose | ) |
The new origin is given by the index of the pose that is to become the new origin.
Definition at line 345 of file CIncrementalMapPartitioner.cpp.
References MRPT_END, and MRPT_START.
void CIncrementalMapPartitioner::clear | ( | ) |
Definition at line 111 of file CIncrementalMapPartitioner.cpp.
Referenced by mrpt::slam::CRangeBearingKFSLAM::reset().
|
overridevirtual |
Returns a deep copy (clone) of the object, indepently of its class.
Implements mrpt::rtti::CObject.
|
inlinestatic |
Definition at line 58 of file CIncrementalMapPartitioner.h.
|
inlinestatic |
Definition at line 58 of file CIncrementalMapPartitioner.h.
|
static |
|
inlinestatic |
Definition at line 58 of file CIncrementalMapPartitioner.h.
|
inherited |
Dump the current contents of the COutputLogger instance in the terminal window.
Definition at line 190 of file COutputLogger.cpp.
|
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().
|
inline |
Return a copy of the adjacency matrix.
Definition at line 188 of file CIncrementalMapPartitioner.h.
References m_A.
Referenced by mrpt::hmtslam::CHMTSLAM::generateLogFiles().
|
inline |
Return a const ref to the internal adjacency matrix.
Definition at line 194 of file CIncrementalMapPartitioner.h.
References m_A.
void CIncrementalMapPartitioner::getAs3DScene | ( | mrpt::opengl::CSetOfObjects::Ptr & | objs, |
const std::map< uint32_t, int64_t > * | renameIndexes = nullptr |
||
) | const |
Return a 3D representation of the graph: poses & links between them.
The previous contents of "objs" will be discarded
Definition at line 361 of file CIncrementalMapPartitioner.cpp.
References ASSERT_, mrpt::opengl::CGridPlaneXY::Create(), mrpt::format(), mrpt::keep_max(), mrpt::keep_min(), mrpt::poses::CPoseOrPoint< DERIVEDCLASS, DIM >::x(), and mrpt::poses::CPoseOrPoint< DERIVEDCLASS, DIM >::y().
Referenced by mrpt::hmtslam::CHMTSLAM::generateLogFiles().
|
inlinestatic |
Definition at line 58 of file CIncrementalMapPartitioner.h.
|
inherited |
Fill the provided string with the contents of the logger's history in std::string representation.
Definition at line 154 of file COutputLogger.cpp.
|
inherited |
Get the history of COutputLogger instance in a string representation.
Definition at line 159 of file COutputLogger.cpp.
Referenced by mrpt::graphslam::deciders::CICPCriteriaNRD< GRAPH_T >::getDescriptiveReport().
|
inherited |
Return the last Tmsg instance registered in the logger history.
Definition at line 195 of file COutputLogger.cpp.
References mrpt::system::COutputLogger::TMsg::getAsString().
|
inherited |
Fill inputtted string with the contents of the last message in history.
Definition at line 201 of file COutputLogger.cpp.
|
inherited |
Return the name of the COutputLogger instance.
Definition at line 143 of file COutputLogger.cpp.
|
inlineinherited |
Definition at line 201 of file system/COutputLogger.h.
References mrpt::system::COutputLogger::m_min_verbosity_level.
Referenced by mrpt::apps::RawlogGrabberApp::dump_verbose_info(), mrpt::maps::CRandomFieldGridMap2D::isEnabledVerbose(), mrpt::slam::CMetricMapBuilderRBPF::processActionObservation(), mrpt::apps::CGridMapAlignerApp::run(), mrpt::apps::RBPF_SLAM_App_Base::run(), and mrpt::apps::ICP_SLAM_App_Base::run().
size_t CIncrementalMapPartitioner::getNodesCount | ( | ) |
Get the total node count currently in the internal map/graph.
Definition at line 255 of file CIncrementalMapPartitioner.cpp.
|
overridevirtual |
Returns information about the class of an object in runtime.
Reimplemented from mrpt::serialization::CSerializable.
|
static |
|
inline |
Read-only access to the sequence of Sensory Frames.
Definition at line 196 of file CIncrementalMapPartitioner.h.
References m_individualFrames.
|
inline |
Access to the sequence of Sensory Frames.
Definition at line 202 of file CIncrementalMapPartitioner.h.
References m_individualFrames.
|
inlineinherited |
Definition at line 202 of file system/COutputLogger.h.
References mrpt::system::COutputLogger::m_min_verbosity_level.
Referenced by mrpt::slam::CMetricMapBuilderRBPF::processActionObservation(), and mrpt::system::COutputLoggerStreamWrapper::~COutputLoggerStreamWrapper().
|
inherited |
Log the given message only if the condition is satisfied.
Definition at line 131 of file COutputLogger.cpp.
|
inherited |
Definition at line 291 of file COutputLogger.cpp.
References getAddress(), and mrpt::system::COutputLogger::m_listCallbacks.
|
inherited |
Alternative logging method, which mimics the printf behavior.
Handy for not having to first use mrpt::format to pass a std::string message to logStr
Definition at line 91 of file COutputLogger.cpp.
Referenced by mrpt::hmtslam::CHMTSLAM::areaAbstraction(), mrpt::graphslam::deciders::CICPCriteriaNRD< GRAPH_T >::CICPCriteriaNRD(), mrpt::hmtslam::CTopLCDetector_GridMatching::computeTopologicalObservationModel(), CGraphSlamHandler< GRAPH_T >::execute(), mrpt::math::CLevenbergMarquardtTempl< VECTORTYPE, USERPARAM >::execute(), CGraphSlamHandler< GRAPH_T >::initOutputDir(), CGraphSlamHandler< GRAPH_T >::initVisualization(), mrpt::nav::CNavigatorManualSequence::navigationStep(), mrpt::nav::CAbstractNavigator::performNavigationStepNavigating(), CGraphSlamHandler< GRAPH_T >::readConfigFname(), CGraphSlamHandler< GRAPH_T >::saveResults(), CGraphSlamHandler< GRAPH_T >::setResultsDirName(), mrpt::nav::CReactiveNavigationSystem::STEP1_InitPTGs(), mrpt::hmtslam::CHMTSLAM::thread_3D_viewer(), mrpt::hmtslam::CHMTSLAM::thread_LSLAM(), mrpt::hmtslam::CHMTSLAM::thread_TBI(), and CGraphSlamHandler< GRAPH_T >::~CGraphSlamHandler().
|
inherited |
Reset the contents of the logger instance.
Called upon construction.
Definition at line 206 of file COutputLogger.cpp.
References mrpt::system::LVL_INFO.
|
staticinherited |
Map from VerbosityLevels to their corresponding mrpt::system::TConsoleColor.
Handy for coloring the input based on the verbosity of the message
Definition at line 47 of file COutputLogger.cpp.
References logging_levels_to_colors.
Referenced by mrpt::system::COutputLogger::TMsg::dumpToConsole().
|
staticinherited |
Map from VerbosityLevels to their corresponding names.
Handy for printing the current message VerbosityLevel along with the actual content
Definition at line 60 of file COutputLogger.cpp.
References logging_levels_to_names.
Referenced by mrpt::system::COutputLogger::TMsg::getAsString().
|
inherited |
Definition at line 278 of file COutputLogger.cpp.
References mrpt::system::COutputLogger::m_listCallbacks.
|
inherited |
Main method to add the specified message string to the logger.
Definition at line 72 of file COutputLogger.cpp.
References mrpt::system::COutputLogger::TMsg::body, mrpt::system::COutputLogger::TMsg::dumpToConsole(), mrpt::system::COutputLogger::TMsg::level, mrpt::system::COutputLogger::TMsg::name, and mrpt::system::COutputLogger::TMsg::timestamp.
Referenced by mrpt::slam::PF_implementation< mrpt::math::TPose3D, CMonteCarloLocalization3D, mrpt::bayes::particle_storage_mode::VALUE >::PF_SLAM_implementation_pfAuxiliaryPFStandardAndOptimal(), mrpt::nav::CReactiveNavigationSystem::STEP1_InitPTGs(), mrpt::system::COutputLoggerStreamWrapper::~COutputLoggerStreamWrapper(), and mrpt::system::CTimeLoggerSaveAtDtor::~CTimeLoggerSaveAtDtor().
void CIncrementalMapPartitioner::removeSetOfNodes | ( | std::vector< uint32_t > | indexesToRemove, |
bool | changeCoordsRef = true |
||
) |
Remove a list of keyframes, with indices as returned by addMapFrame()
changeCoordsRef | If true, coordinates are changed to leave the first node at (0,0,0). |
Definition at line 260 of file CIncrementalMapPartitioner.cpp.
References ASSERT_, MRPT_END, and MRPT_START.
|
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 438 of file CIncrementalMapPartitioner.cpp.
References MRPT_THROW_UNKNOWN_SERIALIZATION_VERSION.
|
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 461 of file CIncrementalMapPartitioner.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 462 of file CIncrementalMapPartitioner.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.
|
inherited |
Set the name of the COutputLogger instance.
Definition at line 138 of file COutputLogger.cpp.
Referenced by mrpt::slam::CMetricMapBuilderICP::CMetricMapBuilderICP(), mrpt::slam::CMetricMapBuilderRBPF::CMetricMapBuilderRBPF(), mrpt::slam::CMonteCarloLocalization2D::CMonteCarloLocalization2D(), mrpt::slam::CMonteCarloLocalization3D::CMonteCarloLocalization3D(), mrpt::apps::ICP_SLAM_App_Base::ICP_SLAM_App_Base(), mrpt::apps::ICP_SLAM_App_Live::ICP_SLAM_App_Live(), mrpt::apps::ICP_SLAM_App_Rawlog::ICP_SLAM_App_Rawlog(), mrpt::graphslam::CWindowManager::initCWindowManager(), mrpt::apps::MonteCarloLocalization_Base::MonteCarloLocalization_Base(), mrpt::apps::RBPF_SLAM_App_Base::RBPF_SLAM_App_Base(), and mrpt::apps::RBPF_SLAM_App_Rawlog::RBPF_SLAM_App_Rawlog().
|
inherited |
Set the minimum logging level for which the incoming logs are going to be taken into account.
String messages with specified VerbosityLevel smaller than the min, will not be outputted to the screen and neither will a record of them be stored in by the COutputLogger instance
Definition at line 144 of file COutputLogger.cpp.
Referenced by mrpt::maps::CRandomFieldGridMap2D::enableVerbose(), mrpt::math::CLevenbergMarquardtTempl< VECTORTYPE, USERPARAM >::execute(), generic_kf_slam_test(), generic_pf_test(), generic_rbpf_slam_test(), mrpt::apps::RawlogGrabberApp::initialize(), mrpt::hwdrivers::CHokuyoURG::initialize(), mrpt::graphslam::deciders::CICPCriteriaNRD< GRAPH_T >::loadParams(), mrpt::apps::CGridMapAlignerApp::run(), mrpt::apps::RBPF_SLAM_App_Base::run(), and mrpt::apps::ICP_SLAM_App_Base::run().
|
inline |
Select the similarity method to use for newly inserted keyframes.
Definition at line 164 of file CIncrementalMapPartitioner.h.
References options, and mrpt::slam::CIncrementalMapPartitioner::TOptions::simil_method.
|
inline |
Sets a custom function for the similarity of new keyframes.
Definition at line 170 of file CIncrementalMapPartitioner.h.
References m_sim_func, options, mrpt::slam::CIncrementalMapPartitioner::TOptions::simil_method, and mrpt::slam::smCUSTOM_FUNCTION.
|
inherited |
alias of setMinLoggingLevel()
Definition at line 149 of file COutputLogger.cpp.
Referenced by mrpt::nav::CAbstractNavigator::CAbstractNavigator(), mrpt::slam::CMetricMapBuilderRBPF::CMetricMapBuilderRBPF(), mrpt::comms::CServerTCPSocket::CServerTCPSocket(), mrpt::slam::CMetricMapBuilderRBPF::processActionObservation(), mrpt::math::ransac_detect_2D_lines(), and mrpt::apps::ICP_SLAM_App_Base::run().
void CIncrementalMapPartitioner::updatePartitions | ( | std::vector< std::vector< uint32_t >> & | partitions | ) |
Recalculate the map/graph partitions.
Definition at line 237 of file CIncrementalMapPartitioner.cpp.
References MRPT_END, and MRPT_START.
Referenced by mrpt::hmtslam::CHMTSLAM::areaAbstraction(), mrpt::slam::CRangeBearingKFSLAM::processActionObservation(), mrpt::slam::CRangeBearingKFSLAM::reconsiderPartitionsNow(), and TEST().
|
inherited |
Write the contents of the COutputLogger instance to an external file.
Upon call to this method, COutputLogger dumps the contents of all the logged commands so far to the specified external file. By default the filename is set to ${LOGGERNAME}.log except if the fname parameter is provided
Definition at line 165 of file COutputLogger.cpp.
References ASSERTMSG_, and mrpt::format().
|
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 58 of file CIncrementalMapPartitioner.h.
|
inherited |
[Default=true] Set it to false in case you don't want the logged messages to be dumped to the output automatically.
Definition at line 240 of file system/COutputLogger.h.
|
inherited |
[Default=false] Enables storing all messages into an internal list.
Definition at line 243 of file system/COutputLogger.h.
|
private |
Adjacency matrix.
Definition at line 213 of file CIncrementalMapPartitioner.h.
Referenced by getAdjacencyMatrix().
|
private |
Definition at line 209 of file CIncrementalMapPartitioner.h.
Referenced by getSequenceOfFrames().
|
private |
Definition at line 210 of file CIncrementalMapPartitioner.h.
|
private |
This will be true after adding new observations, and before an "updatePartitions" is invoked.
Definition at line 220 of file CIncrementalMapPartitioner.h.
|
private |
The last partition.
Definition at line 216 of file CIncrementalMapPartitioner.h.
|
protectedinherited |
Provided messages with VerbosityLevel smaller than this value shall be ignored.
Definition at line 253 of file system/COutputLogger.h.
Referenced by mrpt::system::COutputLogger::getMinLoggingLevel(), and mrpt::system::COutputLogger::isLoggingLevelVisible().
|
private |
Definition at line 222 of file CIncrementalMapPartitioner.h.
Referenced by setSimilarityMethod().
TOptions mrpt::slam::CIncrementalMapPartitioner::options |
Algorithm parameters.
Definition at line 117 of file CIncrementalMapPartitioner.h.
Referenced by mrpt::hmtslam::CHMTSLAM::areaAbstraction(), mrpt::slam::CRangeBearingKFSLAM::loadOptions(), mrpt::slam::CRangeBearingKFSLAM::mapPartitionOptions(), mrpt::slam::CRangeBearingKFSLAM::reset(), setSimilarityMethod(), and TEST().
|
staticprotected |
Definition at line 58 of file CIncrementalMapPartitioner.h.
Page generated by Doxygen 1.8.14 for MRPT 1.9.9 Git: c7a3bec24 Sun Mar 29 18:33:13 2020 +0200 at dom mar 29 18:50:38 CEST 2020 |