18 template <
class GRAPH_T>
21 this->initializeLoggers(
"CFixedIntervalsNRD");
27 template <
class GRAPH_T>
43 m_observation_only_rawlog =
true;
50 m_curr_odometry_only_pose =
pose_t(obs_odometry->odometry);
52 "Current odometry-only pose: %s",
53 m_curr_odometry_only_pose.asString().c_str());
57 this->m_since_prev_node_PDF.mean =
58 m_curr_odometry_only_pose - m_last_odometry_only_pose;
63 m_observation_only_rawlog =
false;
66 bool found = action->getFirstMovementEstimation(move_pdf);
72 incr_constraint.copyFrom(move_pdf);
73 this->m_since_prev_node_PDF += incr_constraint;
77 bool registered = this->checkRegistrationCondition();
81 if (m_observation_only_rawlog)
85 m_last_odometry_only_pose = m_curr_odometry_only_pose;
94 template <
class GRAPH_T>
101 pose_t last_pose_inserted =
103 ? this->m_graph->nodes.at(this->m_prev_registered_nodeID)
107 bool registered =
false;
109 if (this->checkRegistrationCondition(
110 last_pose_inserted, this->getCurrentRobotPosEstimation()))
112 registered = this->registerNewNodeAtEnd();
119 template <
class GRAPH_T>
135 template <
class GRAPH_T>
144 params.registration_max_angle) ||
146 params.registration_max_angle) ||
155 template <
class GRAPH_T>
159 parent_t::loadParams(source_fname);
161 params.loadFromConfigFileName(
162 source_fname,
"NodeRegistrationDeciderParameters");
166 int min_verbosity_level =
source.read_int(
167 "NodeRegistrationDeciderParameters",
"class_verbosity", 1,
false);
174 template <
class GRAPH_T>
178 parent_t::printParams();
184 template <
class GRAPH_T>
195 stringstream class_props_ss;
196 class_props_ss <<
"Strategy: " 197 <<
"Fixed Odometry-based Intervals" << std::endl;
198 class_props_ss << header_sep << std::endl;
201 const std::string time_res = this->m_time_logger.getStatsAsText();
202 const std::string output_res = this->getLogAsString();
206 parent_t::getDescriptiveReport(report_str);
208 *report_str += class_props_ss.str();
209 *report_str += report_sep;
212 *report_str +=
params.getAsString();
213 *report_str += report_sep;
216 *report_str += time_res;
217 *report_str += report_sep;
219 *report_str += output_res;
220 *report_str += report_sep;
225 template <
class GRAPH_T>
227 std::ostream& out)
const 233 template <
class GRAPH_T>
240 registration_max_distance =
source.read_double(
241 section,
"registration_max_distance", 0.5 ,
false);
242 registration_max_angle =
source.read_double(
243 section,
"registration_max_angle", 60 ,
false);
244 registration_max_angle =
DEG2RAD(registration_max_angle);
249 template <
class GRAPH_T>
256 double max_angle_deg =
RAD2DEG(registration_max_angle);
260 "------------------[ Fixed Intervals Node Registration " 261 "]------------------\n";
263 "Max distance for registration = %.2f m\n", registration_max_distance);
265 "Max angle for registration = %.2f deg\n", max_angle_deg);
269 template <
class GRAPH_T>
275 this->getAsString(&str);
#define MRPT_LOG_DEBUG(_STRING)
Use: MRPT_LOG_DEBUG("message");
VerbosityLevel
Enumeration of available verbosity levels.
double RAD2DEG(const double x)
Radians to degrees.
void printParams() const override
Print the problem parameters - relevant to the decider/optimizer to the screen in a unified/compact w...
double DEG2RAD(const double x)
Degrees to radians.
This class allows loading and storing values and vectors of different types from ".ini" files easily.
std::string getAsString() const
void getDescriptiveReport(std::string *report_str) const override
Fill the provided string with a detailed report of the decider/optimizer state.
double pitch() const
Get the PITCH angle (in radians)
double yaw() const
Get the YAW angle (in radians)
double distanceTo(const CPoseOrPoint< OTHERCLASS, DIM2 > &b) const
Returns the Euclidean distance to another pose/point:
This class allows loading and storing values and vectors of different types from a configuration text...
This base provides a set of functions for maths stuff.
#define MRPT_LOG_DEBUG_FMT(_FMT_STRING,...)
Use: MRPT_LOG_DEBUG_FMT("i=%u", i);
bool checkRegistrationCondition() override
If estimated position surpasses the registration max values since the previous registered node...
This namespace contains representation of robot actions and observations.
#define IS_CLASS(obj, class_name)
True if the given reference to object (derived from mrpt::rtti::CObject) is of the given class...
GLsizei const GLchar ** string
T wrapToPi(T a)
Modifies the given angle to translate it into the ]-pi,pi] range.
Classes for 2D/3D geometry representation, both of single values and probability density distribution...
double roll() const
Get the ROLL angle (in radians)
void dumpToTextStream(std::ostream &out) const override
This method should clearly display all the contents of the structure in textual form, sending it to a std::ostream.
typename GRAPH_T::constraint_t::type_value pose_t
type of underlying poses (2D/3D).
A class used to store a 2D pose, including the 2D coordinate point and a heading (phi) angle...
A class used to store a 3D pose (a 3D translation + a rotation in 3D).
std::string format(const char *fmt,...) MRPT_printf_format_check(1
A std::string version of C sprintf.
const double & phi() const
Get the phi angle of the 2D pose (in radians)
void loadParams(const std::string &source_fname) override
Load the necessary for the decider/optimizer configuration parameters.
GLsizei GLsizei GLchar * source
Declares a class that represents a Probability Density function (PDF) of a 3D pose ...
An observation of the current (cumulative) odometry for a wheeled robot.
void loadFromConfigFile(const mrpt::config::CConfigFileBase &source, const std::string §ion) override
This method load the options from a ".ini"-like file or memory-stored string list.
typename GRAPH_T::constraint_t constraint_t
type of graph constraints
GLenum const GLfloat * params
bool updateState(mrpt::obs::CActionCollection::Ptr action, mrpt::obs::CSensoryFrame::Ptr observations, mrpt::obs::CObservation::Ptr observation) override
Method makes use of the CActionCollection/CObservation to update the odometry estimation from the las...
#define MRPT_UNUSED_PARAM(a)
Determines whether this is an X86 or AMD64 platform.