A class used to store a 2D pose, including the 2D coordinate point and a heading (phi) angle.
Use this class instead of lightweight mrpt::math::TPose2D when pose/point composition is to be called multiple times with the same pose, since this class caches calls to expensive trigronometric functions.
For a complete description of Points/Poses, see mrpt::poses::CPoseOrPoint, or refer to this documentation page
#include <mrpt/poses/CPose2D.h>
Public Types | |
enum | { is_3D_val = 0 } |
enum | { rotation_dimensions = 2 } |
enum | { is_PDF_val = 0 } |
typedef CPose2D | type_value |
Used to emulate CPosePDF types, for example, in mrpt::graphs::CNetworkOfPoses. More... | |
Public Member Functions | |
void * | operator new (size_t size) |
void * | operator new[] (size_t size) |
void | operator delete (void *ptr) noexcept |
void | operator delete[] (void *ptr) noexcept |
void | operator delete (void *memory, void *ptr) noexcept |
void * | operator new (size_t size, const std::nothrow_t &) noexcept |
void | operator delete (void *ptr, const std::nothrow_t &) noexcept |
CPose2D () | |
Default constructor (all coordinates to 0) More... | |
CPose2D (const double x, const double y, const double phi) | |
Constructor from an initial value of the pose. More... | |
CPose2D (const CPoint2D &) | |
Constructor from a CPoint2D object. More... | |
CPose2D (const CPose3D &) | |
Aproximation!! Avoid its use, since information is lost. More... | |
CPose2D (const mrpt::math::TPose2D &) | |
Constructor from lightweight object. More... | |
CPose2D (const CPoint3D &) | |
Constructor from CPoint3D with information loss. More... | |
CPose2D (TConstructorFlags_Poses) | |
Fast constructor that leaves all the data uninitialized - call with UNINITIALIZED_POSE as argument. More... | |
const double & | phi () const |
Get the phi angle of the 2D pose (in radians) More... | |
double & | phi () |
double | phi_cos () const |
Get a (cached) value of cos(phi), recomputing it only once when phi changes. More... | |
double | phi_sin () const |
Get a (cached) value of sin(phi), recomputing it only once when phi changes. More... | |
void | phi (double angle) |
Set the phi angle of the 2D pose (in radians) More... | |
void | phi_incr (const double Aphi) |
Increment the PHI angle (without checking the 2 PI range, call normalizePhi is needed) More... | |
void | getAsVector (mrpt::math::CVectorDouble &v) const |
Returns a 1x3 vector with [x y phi]. More... | |
void | getAsVector (mrpt::math::CArrayDouble< 3 > &v) const |
void | getHomogeneousMatrix (mrpt::math::CMatrixDouble44 &out_HM) const |
Returns the corresponding 4x4 homogeneous transformation matrix for the point(translation) or pose (translation+orientation). More... | |
void | getRotationMatrix (mrpt::math::CMatrixDouble22 &R) const |
Returns the SE(2) 2x2 rotation matrix. More... | |
void | getRotationMatrix (mrpt::math::CMatrixDouble33 &R) const |
Returns the equivalent SE(3) 3x3 rotation matrix, with (2,2)=1. More... | |
mrpt::math::CMatrixDouble22 | getRotationMatrix () const |
CPose2D | operator+ (const CPose2D &D) const |
The operator ![]() | |
void | composeFrom (const CPose2D &A, const CPose2D &B) |
Makes ![]() | |
CPose3D | operator+ (const CPose3D &D) const |
The operator ![]() | |
CPoint2D | operator+ (const CPoint2D &u) const |
The operator ![]() | |
void | composePoint (double lx, double ly, double &gx, double &gy) const |
An alternative, slightly more efficient way of doing ![]() | |
void | composePoint (const mrpt::math::TPoint2D &l, mrpt::math::TPoint2D &g) const |
overload ![]() | |
void | composePoint (const mrpt::math::TPoint3D &l, mrpt::math::TPoint3D &g) const |
overload ![]() | |
void | composePoint (double lx, double ly, double lz, double &gx, double &gy, double &gz) const |
overload (the "z" coordinate remains unmodified) More... | |
void | inverseComposePoint (const double gx, const double gy, double &lx, double &ly) const |
Computes the 2D point L such as ![]() | |
void | inverseComposePoint (const mrpt::math::TPoint2D &g, mrpt::math::TPoint2D &l) const |
CPoint3D | operator+ (const CPoint3D &u) const |
The operator ![]() | |
void | inverseComposeFrom (const CPose2D &A, const CPose2D &B) |
Makes ![]() | |
void | inverse () |
Convert this pose into its inverse, saving the result in itself. More... | |
CPose2D | operator- (const CPose2D &b) const |
Compute ![]() | |
CPose3D | operator- (const CPose3D &b) const |
The operator ![]() | |
void | AddComponents (const CPose2D &p) |
Scalar sum of components: This is diferent from poses composition, which is implemented as "+" operators in "CPose" derived classes. More... | |
void | operator*= (const double s) |
Scalar multiplication. More... | |
CPose2D & | operator+= (const CPose2D &b) |
Make ![]() | |
void | normalizePhi () |
Forces "phi" to be in the range [-pi,pi];. More... | |
CPose2D | getOppositeScalar () const |
Return the opposite of the current pose instance by taking the negative of all its components individually. More... | |
void | asString (std::string &s) const |
Returns a human-readable textual representation of the object (eg: "[x y
yaw]", yaw in degrees) More... | |
std::string | asString () const |
void | fromString (const std::string &s) |
Set the current object value from a string generated by 'asString' (eg: "[0.02 1.04 -0.8]" ) More... | |
void | fromStringRaw (const std::string &s) |
Same as fromString, but without requiring the square brackets in the string. More... | |
const double & | operator[] (unsigned int i) const |
double & | operator[] (unsigned int i) |
void | changeCoordinatesReference (const CPose2D &p) |
makes: this = p (+) this More... | |
double | distance2DFrobeniusTo (const CPose2D &p) const |
Returns the 2D distance from this pose/point to a 2D pose using the Frobenius distance. More... | |
const type_value & | getPoseMean () const |
type_value & | getPoseMean () |
void | setToNaN () override |
Set all data fields to quiet NaN. 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 | |
mrpt::utils::CObject::Ptr | 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... | |
Static Public Member Functions | |
static void * | operator new (size_t size, void *ptr) |
static bool | is_3D () |
static bool | is_PDF () |
Public Attributes | |
mrpt::math::CArrayDouble< 2 > | m_coords |
[x,y] More... | |
Protected Member Functions | |
void | update_cached_cos_sin () const |
CSerializable virtual methods | |
void | writeToStream (mrpt::utils::CStream &out, int *getVersion) const override |
Introduces a pure virtual method responsible for writing to a CStream. More... | |
void | readFromStream (mrpt::utils::CStream &in, int version) override |
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 | |
double | m_phi |
The orientation of the pose, in radians. More... | |
double | m_cosphi |
Precomputed cos() & sin() of phi. More... | |
double | m_sinphi |
bool | m_cossin_uptodate |
RTTI stuff | |
using | Ptr = std::shared_ptr< CPose2D > |
using | ConstPtr = std::shared_ptr< const CPose2D > |
static mrpt::utils::CLASSINIT | _init_CPose2D |
static const mrpt::utils::TRuntimeClassId | runtimeClassId |
static constexpr const char * | className = "CPose2D" |
static const mrpt::utils::TRuntimeClassId * | _GetBaseClass () |
static const mrpt::utils::TRuntimeClassId & | GetRuntimeClassIdStatic () |
static mrpt::utils::CObject * | CreateObject () |
template<typename... Args> | |
static Ptr | Create (Args &&... args) |
virtual const mrpt::utils::TRuntimeClassId * | GetRuntimeClass () const override |
Returns information about the class of an object in runtime. More... | |
virtual mrpt::utils::CObject * | clone () const override |
Returns a deep copy (clone) of the object, indepently of its class. More... | |
STL-like methods and typedefs | |
enum | { static_size = 3 } |
typedef double | value_type |
The type of the elements. More... | |
typedef double & | reference |
typedef const double & | const_reference |
typedef std::size_t | size_type |
typedef std::ptrdiff_t | difference_type |
static size_type | size () |
static bool | empty () |
static size_type | max_size () |
static void | resize (const size_t n) |
static bool | is3DPoseOrPoint () |
Return true for poses or points with a Z component, false otherwise. More... | |
double | x () const |
Common members of all points & poses classes. More... | |
double & | x () |
void | x (const double v) |
double | y () const |
double & | y () |
void | y (const double v) |
void | x_incr (const double v) |
void | y_incr (const double v) |
double | sqrDistanceTo (const CPoseOrPoint< OTHERCLASS > &b) const |
Returns the squared euclidean distance to another pose/point: More... | |
double | distanceTo (const CPoseOrPoint< OTHERCLASS > &b) const |
Returns the Euclidean distance to another pose/point: More... | |
double | distanceTo (const mrpt::math::TPoint3D &b) const |
Returns the euclidean distance to a 3D point: More... | |
double | distance2DToSquare (double ax, double ay) const |
Returns the squared 2D distance from this pose/point to a 2D point (ignores Z, if it exists). More... | |
double | distance3DToSquare (double ax, double ay, double az) const |
Returns the squared 3D distance from this pose/point to a 3D point. More... | |
double | distance2DTo (double ax, double ay) const |
Returns the 2D distance from this pose/point to a 2D point (ignores Z, if it exists). More... | |
double | distance3DTo (double ax, double ay, double az) const |
Returns the 3D distance from this pose/point to a 3D point. More... | |
double | norm () const |
Returns the euclidean norm of vector: ![]() | |
mrpt::math::CVectorDouble | getAsVectorVal () const |
Return the pose or point as a 1xN vector with all the components (see derived classes for each implementation) More... | |
mrpt::math::CMatrixDouble44 | getHomogeneousMatrixVal () const |
Returns the corresponding 4x4 homogeneous transformation matrix for the point(translation) or pose (translation+orientation). More... | |
void | getInverseHomogeneousMatrix (mrpt::math::CMatrixDouble44 &out_HM) const |
Returns the corresponding 4x4 inverse homogeneous transformation matrix for this point or pose. More... | |
mrpt::math::CMatrixDouble44 | getInverseHomogeneousMatrix () const |
typedef const double& mrpt::poses::CPose2D::const_reference |
using mrpt::poses::CPose2D::ConstPtr = std::shared_ptr<const CPose2D > |
using mrpt::poses::CPose2D::Ptr = std::shared_ptr< CPose2D > |
typedef double& mrpt::poses::CPose2D::reference |
typedef std::size_t mrpt::poses::CPose2D::size_type |
Used to emulate CPosePDF types, for example, in mrpt::graphs::CNetworkOfPoses.
typedef double mrpt::poses::CPose2D::value_type |
CPose2D::CPose2D | ( | ) |
Default constructor (all coordinates to 0)
Definition at line 30 of file CPose2D.cpp.
Referenced by changeCoordinatesReference(), getOppositeScalar(), and operator+().
CPose2D::CPose2D | ( | const double | x, |
const double | y, | ||
const double | phi | ||
) |
Constructor from an initial value of the pose.
Definition at line 35 of file CPose2D.cpp.
References m_coords, normalizePhi(), mrpt::poses::CPoseOrPoint< CPose2D >::x(), and mrpt::poses::CPoseOrPoint< CPose2D >::y().
|
explicit |
|
explicit |
Aproximation!! Avoid its use, since information is lost.
Definition at line 49 of file CPose2D.cpp.
References m_coords.
|
explicit |
Constructor from lightweight object.
Definition at line 311 of file CPose2D.cpp.
References m_coords, mrpt::math::TPose2D::x, and mrpt::math::TPose2D::y.
|
explicit |
Constructor from CPoint3D with information loss.
Definition at line 318 of file CPose2D.cpp.
References m_coords, normalizePhi(), mrpt::poses::CPoseOrPoint< DERIVEDCLASS >::x(), and mrpt::poses::CPoseOrPoint< DERIVEDCLASS >::y().
|
inline |
|
staticprotected |
Scalar sum of components: This is diferent from poses composition, which is implemented as "+" operators in "CPose" derived classes.
Definition at line 264 of file CPose2D.cpp.
References m_coords, m_cossin_uptodate, and m_phi.
void CPose2D::asString | ( | std::string & | s | ) | const |
Returns a human-readable textual representation of the object (eg: "[x y yaw]", yaw in degrees)
Definition at line 433 of file CPose2D.cpp.
References mrpt::mrpt::format(), m_phi, mrpt::mrpt::utils::RAD2DEG(), mrpt::poses::CPoseOrPoint< CPose2D >::x(), and mrpt::poses::CPoseOrPoint< CPose2D >::y().
Referenced by mrpt::slam::CMetricMapBuilderICP::processObservation().
|
inline |
makes: this = p (+) this
Definition at line 300 of file CPose2D.h.
References composeFrom(), and CPose2D().
|
overridevirtual |
Returns a deep copy (clone) of the object, indepently of its class.
Implements mrpt::utils::CObject.
Makes .
Definition at line 124 of file CPose2D.cpp.
References m_coords, m_cosphi, m_cossin_uptodate, m_phi, m_sinphi, update_cached_cos_sin(), and mrpt::math::wrapToPi().
Referenced by mrpt::poses::CPosePDFGaussian::changeCoordinatesReference(), mrpt::poses::CPosePDFGaussianInf::changeCoordinatesReference(), changeCoordinatesReference(), operator+=(), mrpt::hmtslam::CLocalMetricHypothesis::prediction_and_update(), and mrpt::slam::CMetricMapBuilderICP::processActionObservation().
void CPose2D::composePoint | ( | double | lx, |
double | ly, | ||
double & | gx, | ||
double & | gy | ||
) | const |
An alternative, slightly more efficient way of doing with G and L being 2D points and P this 2D pose.
An alternative, slightly more efficient way of doing with G and L being 2D points and P this 2D pose.
Definition at line 188 of file CPose2D.cpp.
References m_coords, m_cosphi, m_sinphi, and update_cached_cos_sin().
Referenced by mrpt::nav::CPTG_RobotShape_Polygonal::add_robotShape_to_setOfLines(), mrpt::nav::CPTG_RobotShape_Circular::add_robotShape_to_setOfLines(), composePoint(), mrpt::poses::CPosePDFGaussian::composePoint(), mrpt::maps::COccupancyGridMap2D::computeObservationLikelihood_Consensus(), mrpt::maps::COccupancyGridMap2D::computeObservationLikelihood_ConsensusOWA(), mrpt::poses::CRobot2DPoseEstimator::extrapolateRobotPose(), ransac_data_assoc_run(), mrpt::tfest::se2_l2_robust(), mrpt::nav::CReactiveNavigationSystem::STEP3_WSpaceToTPSpace(), and mrpt::nav::PlannerTPS_VirtualBase::transformPointcloudWithSquareClipping().
void CPose2D::composePoint | ( | const mrpt::math::TPoint2D & | l, |
mrpt::math::TPoint2D & | g | ||
) | const |
overload with G and L being 2D points and P this 2D pose
Definition at line 196 of file CPose2D.cpp.
References composePoint(), mrpt::math::TPoint2D::x, and mrpt::math::TPoint2D::y.
void CPose2D::composePoint | ( | const mrpt::math::TPoint3D & | l, |
mrpt::math::TPoint3D & | g | ||
) | const |
overload with G and L being 3D points and P this 2D pose (the "z" coordinate remains unmodified)
Definition at line 204 of file CPose2D.cpp.
References composePoint(), mrpt::math::TPoint3D::x, mrpt::math::TPoint3D::y, and mrpt::math::TPoint3D::z.
void CPose2D::composePoint | ( | double | lx, |
double | ly, | ||
double | lz, | ||
double & | gx, | ||
double & | gy, | ||
double & | gz | ||
) | const |
overload (the "z" coordinate remains unmodified)
Definition at line 210 of file CPose2D.cpp.
References m_coords, m_cosphi, m_sinphi, and update_cached_cos_sin().
|
inlinestatic |
|
static |
double CPose2D::distance2DFrobeniusTo | ( | const CPose2D & | p | ) | const |
Returns the 2D distance from this pose/point to a 2D pose using the Frobenius distance.
Definition at line 410 of file CPose2D.cpp.
References phi(), mrpt::math::square(), mrpt::poses::CPoseOrPoint< CPose2D >::x(), and mrpt::poses::CPoseOrPoint< CPose2D >::y().
|
inlineinherited |
Returns the 2D distance from this pose/point to a 2D point (ignores Z, if it exists).
Definition at line 233 of file CPoseOrPoint.h.
|
inlineinherited |
Returns the squared 2D distance from this pose/point to a 2D point (ignores Z, if it exists).
Definition at line 213 of file CPoseOrPoint.h.
|
inlineinherited |
Returns the 3D distance from this pose/point to a 3D point.
Definition at line 239 of file CPoseOrPoint.h.
|
inlineinherited |
Returns the squared 3D distance from this pose/point to a 3D point.
Definition at line 220 of file CPoseOrPoint.h.
|
inlineinherited |
Returns the Euclidean distance to another pose/point:
Definition at line 206 of file CPoseOrPoint.h.
|
inlineinherited |
Returns the euclidean distance to a 3D point:
Definition at line 245 of file CPoseOrPoint.h.
void CPose2D::fromString | ( | const std::string & | s | ) |
Set the current object value from a string generated by 'asString' (eg: "[0.02 1.04 -0.8]" )
std::exception | On invalid format |
Definition at line 392 of file CPose2D.cpp.
References ASSERTMSG_, DEG2RAD, phi(), mrpt::mrpt::math::size(), THROW_EXCEPTION, mrpt::poses::CPoseOrPoint< CPose2D >::x(), and mrpt::poses::CPoseOrPoint< CPose2D >::y().
Referenced by fromStringRaw().
void CPose2D::fromStringRaw | ( | const std::string & | s | ) |
Same as fromString, but without requiring the square brackets in the string.
Definition at line 405 of file CPose2D.cpp.
References fromString().
void CPose2D::getAsVector | ( | mrpt::math::CVectorDouble & | v | ) | const |
Returns a 1x3 vector with [x y phi].
Definition at line 352 of file CPose2D.cpp.
void CPose2D::getAsVector | ( | mrpt::math::CArrayDouble< 3 > & | v | ) | const |
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 360 of file CPose2D.cpp.
|
inlineinherited |
Return the pose or point as a 1xN vector with all the components (see derived classes for each implementation)
Definition at line 265 of file CPoseOrPoint.h.
void CPose2D::getHomogeneousMatrix | ( | mrpt::math::CMatrixDouble44 & | out_HM | ) | const |
Returns the corresponding 4x4 homogeneous transformation matrix for the point(translation) or pose (translation+orientation).
Definition at line 288 of file CPose2D.cpp.
References m_coords, m_cosphi, m_sinphi, and update_cached_cos_sin().
Referenced by mrpt::poses::CPosePDFSOG::changeCoordinatesReference(), and operator-().
|
inlineinherited |
Returns the corresponding 4x4 homogeneous transformation matrix for the point(translation) or pose (translation+orientation).
Definition at line 276 of file CPoseOrPoint.h.
|
inlineinherited |
Returns the corresponding 4x4 inverse homogeneous transformation matrix for this point or pose.
Definition at line 287 of file CPoseOrPoint.h.
|
inlineinherited |
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 295 of file CPoseOrPoint.h.
CPose2D CPose2D::getOppositeScalar | ( | ) | const |
Return the opposite of the current pose instance by taking the negative of all its components individually.
Definition at line 428 of file CPose2D.cpp.
References CPose2D(), m_coords, and m_phi.
|
inline |
|
inline |
void CPose2D::getRotationMatrix | ( | mrpt::math::CMatrixDouble22 & | R | ) | const |
Returns the SE(2) 2x2 rotation matrix.
Definition at line 143 of file CPose2D.cpp.
References m_cosphi, m_sinphi, R, and update_cached_cos_sin().
void CPose2D::getRotationMatrix | ( | mrpt::math::CMatrixDouble33 & | R | ) | const |
Returns the equivalent SE(3) 3x3 rotation matrix, with (2,2)=1.
Definition at line 152 of file CPose2D.cpp.
References m_cosphi, m_sinphi, R, and update_cached_cos_sin().
|
inline |
Definition at line 145 of file CPose2D.h.
References R, and mrpt::math::UNINITIALIZED_MATRIX.
|
overridevirtual |
Returns information about the class of an object in runtime.
Reimplemented from mrpt::utils::CSerializable.
|
static |
void CPose2D::inverse | ( | ) |
Convert this pose into its inverse, saving the result in itself.
Definition at line 337 of file CPose2D.cpp.
References m_coords, m_cosphi, m_cossin_uptodate, m_phi, m_sinphi, and update_cached_cos_sin().
Referenced by mrpt::poses::operator-().
Makes this method is slightly more efficient than "this= A - B;" since it avoids the temporary object.
Definition at line 247 of file CPose2D.cpp.
References m_coords, m_cosphi, m_cossin_uptodate, m_phi, m_sinphi, update_cached_cos_sin(), and mrpt::math::wrapToPi().
Referenced by mrpt::nav::PoseDistanceMetric< TNodeSE2_TP >::distance(), and operator-().
void CPose2D::inverseComposePoint | ( | const double | gx, |
const double | gy, | ||
double & | lx, | ||
double & | ly | ||
) | const |
Computes the 2D point L such as .
Definition at line 219 of file CPose2D.cpp.
References m_coords, m_cosphi, m_sinphi, and update_cached_cos_sin().
Referenced by inverseComposePoint(), and mrpt::nav::CWaypointsNavigator::waypoints_navigationStep().
|
inline |
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 191 of file CPose2D.h.
References inverseComposePoint(), mrpt::math::TPoint2D::x, and mrpt::math::TPoint2D::y.
|
inlinestaticinherited |
Return true for poses or points with a Z component, false otherwise.
Definition at line 172 of file CPoseOrPoint.h.
|
inlinestatic |
|
inlinestatic |
Definition at line 325 of file CPose2D.h.
References is_PDF_val.
|
inlinestatic |
Definition at line 346 of file CPose2D.h.
References static_size.
|
inlineinherited |
Returns the euclidean norm of vector: .
Definition at line 252 of file CPoseOrPoint.h.
void CPose2D::normalizePhi | ( | ) |
Forces "phi" to be in the range [-pi,pi];.
Definition at line 305 of file CPose2D.cpp.
References m_cossin_uptodate, m_phi, and mrpt::math::wrapToPi().
Referenced by mrpt::poses::CPosePDFGaussian::bayesianFusion(), mrpt::poses::CPosePDFGaussianInf::bayesianFusion(), CPose2D(), mrpt::poses::CPosePDFGaussian::drawSingleSample(), mrpt::poses::CPosePDFGaussianInf::drawSingleSample(), and mrpt::obs::CActionRobotMovement2D::drawSingleSample_modelThrun().
|
inlinenoexcept |
|
inline |
|
inline |
void CPose2D::operator*= | ( | const double | s | ) |
Scalar multiplication.
Definition at line 275 of file CPose2D.cpp.
References m_coords, m_cossin_uptodate, and m_phi.
The operator is the pose compounding operator.
Definition at line 111 of file CPose2D.cpp.
References CPose2D(), m_coords, m_cosphi, m_phi, m_sinphi, and update_cached_cos_sin().
The operator is the pose compounding operator.
Definition at line 169 of file CPose2D.cpp.
The operator is the pose/point compounding operator.
Definition at line 177 of file CPose2D.cpp.
References m_coords, m_cosphi, m_sinphi, update_cached_cos_sin(), mrpt::poses::CPoseOrPoint< DERIVEDCLASS >::x(), and mrpt::poses::CPoseOrPoint< DERIVEDCLASS >::y().
The operator is the pose/point compounding operator.
Definition at line 234 of file CPose2D.cpp.
References m_coords, m_cosphi, m_sinphi, update_cached_cos_sin(), mrpt::poses::CPoseOrPoint< DERIVEDCLASS >::x(), and mrpt::poses::CPoseOrPoint< DERIVEDCLASS >::y().
Make .
Definition at line 386 of file CPose2D.cpp.
References composeFrom().
Compute .
Definition at line 213 of file CPose2D.h.
References inverseComposeFrom(), and mrpt::poses::UNINITIALIZED_POSE.
The operator is the pose inverse compounding operator.
Definition at line 417 of file CPose2D.cpp.
References getHomogeneousMatrix(), and mrpt::math::UNINITIALIZED_MATRIX.
|
inline |
|
inline |
|
inline |
Get the phi angle of the 2D pose (in radians)
Definition at line 91 of file CPose2D.h.
References m_phi.
Referenced by mrpt::graphslam::CGraphSlamEngine< GRAPH_T >::accumulateAngleDiffs(), mrpt::slam::CGridMapAligner::AlignPDF_robustMatch(), mrpt::graphs::detail::graph_ops< graph_t >::auxEuclid2Dist(), mrpt::poses::CPosePDFGaussian::bayesianFusion(), mrpt::poses::CPosePDFGaussianInf::bayesianFusion(), mrpt::poses::CPosePDFGaussian::changeCoordinatesReference(), mrpt::poses::CPosePDFGaussianInf::changeCoordinatesReference(), mrpt::graphslam::deciders::CFixedIntervalsNRD< GRAPH_T >::checkRegistrationCondition(), mrpt::graphslam::deciders::CIncrementalNodeRegistrationDecider< GRAPH_T >::checkRegistrationConditionPose(), mrpt::obs::CActionRobotMovement2D::computeFromOdometry_modelGaussian(), mrpt::obs::CActionRobotMovement2D::computeFromOdometry_modelThrun(), mrpt::maps::COccupancyGridMap2D::computeLikelihoodField_Thrun(), mrpt::poses::CPosePDFParticles::copyFrom(), mrpt::maps::CPointsMap::determineMatching2D(), distance2DFrobeniusTo(), mrpt::poses::CPoseRandomSampler::do_sample_2D(), mrpt::poses::CPosePDFGaussian::drawManySamples(), mrpt::poses::CPosePDFGaussianInf::drawManySamples(), mrpt::poses::CPosePDFGaussian::drawSingleSample(), mrpt::poses::CPosePDFGaussianInf::drawSingleSample(), mrpt::obs::CActionRobotMovement2D::drawSingleSample_modelThrun(), mrpt::poses::SE_traits< 2 >::exp(), mrpt::obs::CActionRobotMovement2D::fastDrawSingleSample_modelGaussian(), fromString(), func_laserSimul_callback(), mrpt::math::TLine2D::getAsPose2D(), mrpt::math::TLine2D::getAsPose2DForcingOrigin(), mrpt::poses::CRobot2DPoseEstimator::getLatestRobotPose(), mrpt::slam::CICP::ICP_Method_Classic(), mrpt::slam::CICP::ICP_Method_LM(), mrpt::maps::COccupancyGridMap2D::internal_insertObservation(), mrpt::poses::CPosePDFGaussian::inverse(), mrpt::poses::CPosePDFGaussianInf::inverse(), mrpt::poses::CPosePDFGaussian::inverseComposition(), mrpt::maps::COccupancyGridMap2D::laserScanSimulator(), mrpt::poses::SE_traits< 2 >::ln(), mrpt::hmtslam::CLSLAM_RBPF_2DLASER::loadTPathBinFromPath(), mrpt::poses::CPosePDFSOG::mergeModes(), mrpt::slam::CRangeBearingKFSLAM2D::OnGetAction(), mrpt::slam::CRangeBearingKFSLAM2D::OnObservationModel(), mrpt::slam::CRangeBearingKFSLAM2D::OnTransitionModel(), mrpt::poses::operator!=(), mrpt::poses::CPosePDFSOG::operator+=(), mrpt::poses::operator==(), mrpt::opengl::CSetOfObjects::posePDF2opengl(), mrpt::detectors::CDetectorDoorCrossing::process(), mrpt::math::project2D(), ransac_data_assoc_run(), readFromStream(), mrpt::slam::CRejectionSamplingRangeOnlyLocalization::RS_drawFromProposal(), mrpt::poses::CPosePDFGaussian::saveToTextFile(), mrpt::poses::CPosePDFGaussianInf::saveToTextFile(), mrpt::tfest::se2_l2_robust(), mrpt::nav::PlannerRRT_SE2_TPS::solve(), mrpt::maps::COccupancyGridMap2D::sonarSimulator(), Pose3DTests::test_to_from_2d(), mrpt::slam::CMetricMapBuilderICP::TDist::updateDistances(), mrpt::graphs::detail::graph_ops< graph_t >::write_EDGE_line(), and mrpt::poses::CPosePDFGaussianInf::writeToStream().
|
inline |
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 93 of file CPose2D.h.
References m_cossin_uptodate, and m_phi.
|
inline |
Set the phi angle of the 2D pose (in radians)
Definition at line 115 of file CPose2D.h.
References m_cossin_uptodate, and m_phi.
|
inline |
Get a (cached) value of cos(phi), recomputing it only once when phi changes.
Definition at line 101 of file CPose2D.h.
References m_cosphi, and update_cached_cos_sin().
Referenced by mrpt::poses::operator+().
|
inline |
Increment the PHI angle (without checking the 2 PI range, call normalizePhi is needed)
Definition at line 123 of file CPose2D.h.
References m_cossin_uptodate, and m_phi.
|
inline |
Get a (cached) value of sin(phi), recomputing it only once when phi changes.
Definition at line 108 of file CPose2D.h.
References m_sinphi, and update_cached_cos_sin().
Referenced by mrpt::poses::operator+().
|
overrideprotectedvirtual |
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.
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 error, see CStream::ReadBuffer |
Implements mrpt::utils::CSerializable.
Definition at line 74 of file CPose2D.cpp.
References m_coords, m_cossin_uptodate, m_phi, MRPT_THROW_UNKNOWN_SERIALIZATION_VERSION, and phi().
|
inlinestatic |
Definition at line 347 of file CPose2D.h.
References mrpt::format(), and static_size.
Referenced by mrpt::hmtslam::CLocalMetricHypothesis::prediction_and_update().
|
overridevirtual |
Set all data fields to quiet NaN.
Implements mrpt::poses::CPoseOrPoint< CPose2D >.
Definition at line 438 of file CPose2D.cpp.
|
inlinestatic |
Definition at line 344 of file CPose2D.h.
References static_size.
Referenced by mrpt::slam::CRangeBearingKFSLAM2D::OnObservationModel().
|
inlineinherited |
Returns the squared euclidean distance to another pose/point:
Definition at line 179 of file CPoseOrPoint.h.
|
inlineprotected |
Definition at line 56 of file CPose2D.h.
References m_cosphi, m_cossin_uptodate, m_phi, and m_sinphi.
Referenced by composeFrom(), composePoint(), getHomogeneousMatrix(), getRotationMatrix(), inverse(), inverseComposeFrom(), inverseComposePoint(), operator+(), phi_cos(), and phi_sin().
|
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 89 of file CSerializable.h.
|
overrideprotectedvirtual |
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.
out | The output binary stream where object must be dumped. |
getVersion | If nullptr, 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. |
std::exception | On any error, see CStream::WriteBuffer |
Implements mrpt::utils::CSerializable.
Definition at line 59 of file CPose2D.cpp.
|
inlineinherited |
Common members of all points & poses classes.
< Get X coord.
Definition at line 135 of file CPoseOrPoint.h.
Referenced by asString(), CPose2D(), distance2DFrobeniusTo(), and fromString().
|
inlineinherited |
Definition at line 144 of file CPoseOrPoint.h.
|
inlineinherited |
v | Set X coord. |
Definition at line 153 of file CPoseOrPoint.h.
|
inlineinherited |
v | X+=v |
Definition at line 162 of file CPoseOrPoint.h.
|
inlineinherited |
< Get Y coord.
Definition at line 139 of file CPoseOrPoint.h.
Referenced by asString(), CPose2D(), distance2DFrobeniusTo(), and fromString().
|
inlineinherited |
Definition at line 148 of file CPoseOrPoint.h.
|
inlineinherited |
v | Set Y coord. |
Definition at line 157 of file CPoseOrPoint.h.
|
inlineinherited |
v | Y+=v |
Definition at line 166 of file CPoseOrPoint.h.
|
staticprotected |
|
static |
mrpt::math::CArrayDouble<2> mrpt::poses::CPose2D::m_coords |
[x,y]
Definition at line 47 of file CPose2D.h.
Referenced by AddComponents(), composeFrom(), composePoint(), CPose2D(), getAsVector(), getHomogeneousMatrix(), getOppositeScalar(), inverse(), inverseComposeFrom(), inverseComposePoint(), operator*=(), operator+(), operator[](), readFromStream(), and writeToStream().
|
mutableprotected |
Precomputed cos() & sin() of phi.
Definition at line 53 of file CPose2D.h.
Referenced by composeFrom(), composePoint(), getHomogeneousMatrix(), getRotationMatrix(), inverse(), inverseComposeFrom(), inverseComposePoint(), operator+(), phi_cos(), and update_cached_cos_sin().
|
mutableprotected |
Definition at line 54 of file CPose2D.h.
Referenced by AddComponents(), composeFrom(), inverse(), inverseComposeFrom(), normalizePhi(), operator*=(), phi(), phi_incr(), readFromStream(), and update_cached_cos_sin().
|
protected |
The orientation of the pose, in radians.
Definition at line 51 of file CPose2D.h.
Referenced by AddComponents(), asString(), composeFrom(), getAsVector(), getOppositeScalar(), inverse(), inverseComposeFrom(), normalizePhi(), operator*=(), operator+(), operator[](), phi(), phi_incr(), readFromStream(), update_cached_cos_sin(), and writeToStream().
|
mutableprotected |
Definition at line 53 of file CPose2D.h.
Referenced by composeFrom(), composePoint(), getHomogeneousMatrix(), getRotationMatrix(), inverse(), inverseComposeFrom(), inverseComposePoint(), operator+(), phi_sin(), and update_cached_cos_sin().
|
staticprotected |
Page generated by Doxygen 1.8.14 for MRPT 1.9.9 Git: ae4571287 Thu Nov 23 00:06:53 2017 +0100 at dom oct 27 23:51:55 CET 2019 |