A class used to store a 2D pose.
A class used to store a 2D pose, including the 2D coordinate point and a heading (phi) angle.
For a complete description of Points/Poses, see mrpt::poses::CPoseOrPoint, or refer to the 2D/3D Geometry tutorial in the wiki.
#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. | |
Public Member Functions | |
| CPose2D () | |
| Default constructor (all coordinates to 0) | |
| CPose2D (const double x, const double y, const double phi) | |
| Constructor from an initial value of the pose. | |
| CPose2D (const CPoint2D &) | |
| Constructor from a CPoint2D object. | |
| CPose2D (const CPose3D &) | |
| Aproximation!! Avoid its use, since information is lost. | |
| CPose2D (const mrpt::math::TPose2D &) | |
| Constructor from lightweight object. | |
| CPose2D (const CPoint3D &) | |
| Constructor from CPoint3D with information loss. | |
| CPose2D (TConstructorFlags_Poses constructor_dummy_param) | |
| Fast constructor that leaves all the data uninitialized - call with UNINITIALIZED_POSE as argument. | |
| const double & | phi () const |
| Get the phi angle of the 2D pose (in radians) | |
| double & | phi () |
| void | phi (double angle) |
| Set the phi angle of the 2D pose (in radians) | |
| void | phi_incr (const double Aphi) |
| Increment the PHI angle (without checking the 2 PI range, call normalizePhi is needed) | |
| void | getAsVector (vector_double &v) const |
| Returns a 1x3 vector with [x y phi]. | |
| void | getHomogeneousMatrix (CMatrixDouble44 &out_HM) const |
| Returns the corresponding 4x4 homogeneous transformation matrix for the point(translation) or pose (translation+orientation). | |
| CPose2D | operator+ (const CPose2D &D) const |
The operator is the pose compounding operator. | |
| void | composeFrom (const CPose2D &A, const CPose2D &B) |
Makes . | |
| CPose3D | operator+ (const CPose3D &D) const |
The operator is the pose compounding operator. | |
| CPoint2D | operator+ (const CPoint2D &u) const |
The operator is the pose/point compounding operator. | |
| void | 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. | |
| CPoint3D | operator+ (const CPoint3D &u) const |
The operator is the pose/point compounding operator. | |
| void | inverseComposeFrom (const CPose2D &A, const CPose2D &B) |
Makes this method is slightly more efficient than "this= A - B;" since it avoids the temporary object. | |
| CPose2D | operator- (const CPose2D &b) const |
Compute . | |
| void | AddComponents (CPose2D &p) |
| Scalar sum of components: This is diferent from poses composition, which is implemented as "+" operators in "CPose" derived classes. | |
| void | operator*= (const double s) |
| Scalar multiplication. | |
| CPose2D & | operator+= (const CPose2D &b) |
Make . | |
| void | normalizePhi () |
| Forces "phi" to be in the range [-pi,pi];. | |
| void | asString (std::string &s) const |
| Returns a human-readable textual representation of the object (eg: "[x y yaw]", yaw in degrees) | |
| 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]" ) | |
| const double & | operator[] (unsigned int i) const |
| double & | operator[] (unsigned int i) |
| void | changeCoordinatesReference (const CPose2D &p) |
| makes: this = p (+) this | |
| const type_value & | getPoseMean () const |
| type_value & | getPoseMean () |
| CPose3D | operator- (const CPose3D &b) const |
The operator is the pose inverse compounding operator. | |
| 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). | |
| CObject * | clone () const |
| Cloning interface for smart pointers. | |
Static Public Member Functions | |
| static bool | is_3D () |
| static bool | is_PDF () |
Public Attributes | |
| mrpt::math::CArrayDouble< 2 > | m_coords |
| [x,y] | |
Static Public Attributes | |
| static const mrpt::utils::TRuntimeClassId | classCObject |
Protected Member Functions | |
| virtual void | writeToStream (mrpt::utils::CStream &out, int *getVersion) const =0 |
| Introduces a pure virtual method responsible for writing to a CStream. | |
| virtual void | readFromStream (mrpt::utils::CStream &in, int version)=0 |
| 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. | |
Protected Attributes | |
| double | m_phi |
| The orientation of the pose, in radians. | |
RTTI stuff | |
| typedef CPose2DPtr | SmartPtr |
| static mrpt::utils::CLASSINIT | _init_CPose2D |
| static mrpt::utils::TRuntimeClassId | classCPose2D |
| static const mrpt::utils::TRuntimeClassId * | classinfo |
| static const mrpt::utils::TRuntimeClassId * | _GetBaseClass () |
| virtual const mrpt::utils::TRuntimeClassId * | GetRuntimeClass () const |
| Returns information about the class of an object in runtime. | |
| virtual mrpt::utils::CObject * | duplicate () const |
| Returns a copy of the object, indepently of its class. | |
| static mrpt::utils::CObject * | CreateObject () |
| static CPose2DPtr | Create () |
STL-like methods and typedefs | |
| enum | { static_size = 3 } |
| typedef double | value_type |
| The type of the elements. | |
| 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) |
RTTI stuff | |
| static const mrpt::utils::TRuntimeClassId | classCSerializable |
| class | mrpt::utils::CStream |
| typedef const double& mrpt::poses::CPose2D::const_reference |
| typedef std::ptrdiff_t mrpt::poses::CPose2D::difference_type |
| 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 |
| mrpt::poses::CPose2D::CPose2D | ( | ) |
Default constructor (all coordinates to 0)
| mrpt::poses::CPose2D::CPose2D | ( | const double | x, |
| const double | y, | ||
| const double | phi | ||
| ) |
Constructor from an initial value of the pose.
| mrpt::poses::CPose2D::CPose2D | ( | const CPose3D & | ) | [explicit] |
Aproximation!! Avoid its use, since information is lost.
| mrpt::poses::CPose2D::CPose2D | ( | const mrpt::math::TPose2D & | ) |
Constructor from lightweight object.
| mrpt::poses::CPose2D::CPose2D | ( | const CPoint3D & | ) | [explicit] |
Constructor from CPoint3D with information loss.
| mrpt::poses::CPose2D::CPose2D | ( | TConstructorFlags_Poses | constructor_dummy_param | ) | [inline] |
| static const mrpt::utils::TRuntimeClassId* mrpt::poses::CPose2D::_GetBaseClass | ( | ) | [static, protected] |
Reimplemented from mrpt::utils::CSerializable.
| void mrpt::poses::CPose2D::AddComponents | ( | CPose2D & | p | ) |
Scalar sum of components: This is diferent from poses composition, which is implemented as "+" operators in "CPose" derived classes.
| void mrpt::poses::CPose2D::asString | ( | std::string & | s | ) | const [inline] |
Returns a human-readable textual representation of the object (eg: "[x y yaw]", yaw in degrees)
Definition at line 166 of file CPose2D.h.
References mrpt::format(), Eigen::internal::y, and mrpt::utils::RAD2DEG().
| std::string mrpt::poses::CPose2D::asString | ( | ) | const [inline] |
| void mrpt::poses::CPose2D::changeCoordinatesReference | ( | const CPose2D & | p | ) | [inline] |
| CObject* mrpt::utils::CObject::clone | ( | ) | const [inline, inherited] |
Cloning interface for smart pointers.
Reimplemented in mrpt::opengl::CRenderizable, and mrpt::opengl::CRenderizableDisplayList.
Makes
.
| void mrpt::poses::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.
| static CPose2DPtr mrpt::poses::CPose2D::Create | ( | ) | [static] |
| static mrpt::utils::CObject* mrpt::poses::CPose2D::CreateObject | ( | ) | [static] |
| virtual mrpt::utils::CObject* mrpt::poses::CPose2D::duplicate | ( | ) | const [virtual] |
Returns a copy of the object, indepently of its class.
Implements mrpt::utils::CObject.
| mrpt::utils::CObjectPtr mrpt::utils::CObject::duplicateGetSmartPtr | ( | ) | const [inline, inherited] |
| static bool mrpt::poses::CPose2D::empty | ( | ) | [inline, static] |
| void mrpt::poses::CPose2D::fromString | ( | const std::string & | s | ) | [inline] |
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 173 of file CPose2D.h.
References THROW_EXCEPTION, ASSERTMSG_, mrpt::math::size(), Eigen::internal::y, and mrpt::utils::DEG2RAD().
| void mrpt::poses::CPose2D::getAsVector | ( | vector_double & | v | ) | const |
Returns a 1x3 vector with [x y phi].
| void mrpt::poses::CPose2D::getHomogeneousMatrix | ( | CMatrixDouble44 & | out_HM | ) | const |
Returns the corresponding 4x4 homogeneous transformation matrix for the point(translation) or pose (translation+orientation).
| const type_value& mrpt::poses::CPose2D::getPoseMean | ( | ) | const [inline] |
| type_value& mrpt::poses::CPose2D::getPoseMean | ( | ) | [inline] |
| virtual const mrpt::utils::TRuntimeClassId* mrpt::poses::CPose2D::GetRuntimeClass | ( | ) | const [virtual] |
Returns information about the class of an object in runtime.
Reimplemented from mrpt::utils::CSerializable.
Makes
this method is slightly more efficient than "this= A - B;" since it avoids the temporary object.
Referenced by operator-().
| static bool mrpt::poses::CPose2D::is_3D | ( | ) | [inline, static] |
| static bool mrpt::poses::CPose2D::is_PDF | ( | ) | [inline, static] |
| static size_type mrpt::poses::CPose2D::max_size | ( | ) | [inline, static] |
Definition at line 230 of file CPose2D.h.
References static_size.
| void mrpt::poses::CPose2D::normalizePhi | ( | ) |
Forces "phi" to be in the range [-pi,pi];.
| void mrpt::poses::CPose2D::operator*= | ( | const double | s | ) |
Scalar multiplication.
The operator
is the pose compounding operator.
The operator
is the pose compounding operator.
The operator
is the pose/point compounding operator.
The operator
is the pose/point compounding operator.
The operator
is the pose inverse compounding operator.
Compute
.
Definition at line 136 of file CPose2D.h.
References mrpt::poses::UNINITIALIZED_POSE, and inverseComposeFrom().
| const double& mrpt::poses::CPose2D::operator[] | ( | unsigned int | i | ) | const [inline] |
| double& mrpt::poses::CPose2D::operator[] | ( | unsigned int | i | ) | [inline] |
| const double& mrpt::poses::CPose2D::phi | ( | ) | const [inline] |
Get the phi angle of the 2D pose (in radians)
Definition at line 88 of file CPose2D.h.
Referenced by mrpt::graphs::detail::graph_ops::write_VERTEX_line(), mrpt::graphs::detail::graph_ops::write_EDGE_line(), mrpt::graphs::detail::graph_ops::auxEuclid2Dist(), mrpt::poses::CRobot2DPoseEstimator::getLatestRobotPose(), mrpt::poses::SE_traits< 2 >::exp(), and mrpt::poses::SE_traits< 2 >::ln().
| double& mrpt::poses::CPose2D::phi | ( | ) | [inline] |
| void mrpt::poses::CPose2D::phi | ( | double | angle | ) | [inline] |
| void mrpt::poses::CPose2D::phi_incr | ( | const double | Aphi | ) | [inline] |
| virtual void mrpt::utils::CSerializable::readFromStream | ( | mrpt::utils::CStream & | in, |
| int | version | ||
| ) | [protected, pure virtual, inherited] |
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 |
Implemented in mrpt::math::CMatrixD, and mrpt::math::CMatrix.
| static void mrpt::poses::CPose2D::resize | ( | const size_t | n | ) | [inline, static] |
Definition at line 231 of file CPose2D.h.
References static_size, and mrpt::format().
| static size_type mrpt::poses::CPose2D::size | ( | ) | [inline, static] |
Definition at line 228 of file CPose2D.h.
References static_size.
| virtual void mrpt::utils::CSerializable::writeToStream | ( | mrpt::utils::CStream & | out, |
| int * | getVersion | ||
| ) | const [protected, pure virtual, inherited] |
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 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. |
| std::exception | On any error, see CStream::WriteBuffer |
Implemented in mrpt::math::CMatrixD, and mrpt::math::CMatrix.
friend class mrpt::utils::CStream [friend, inherited] |
Reimplemented in mrpt::slam::CRandomFieldGridMap2D, mrpt::slam::CPointsMap, mrpt::slam::CObservation, mrpt::slam::CMetricMap, mrpt::opengl::CRenderizable, mrpt::poses::CPose3DQuatPDF, mrpt::poses::CPointPDF, mrpt::poses::CPose3DPDF, mrpt::poses::CPosePDF, mrpt::poses::CPoint2DPDF, mrpt::opengl::CRenderizableDisplayList, mrpt::slam::CAction, mrpt::detectors::CDetectableObject, mrpt::opengl::CTexturedObject, and mrpt::reactivenav::CHolonomicLogFileRecord.
Definition at line 56 of file CSerializable.h.
mrpt::utils::CLASSINIT mrpt::poses::CPose2D::_init_CPose2D [static, protected] |
const mrpt::utils::TRuntimeClassId mrpt::utils::CObject::classCObject [static, inherited] |
const mrpt::utils::TRuntimeClassId mrpt::utils::CSerializable::classCSerializable [static, inherited] |
Definition at line 56 of file CSerializable.h.
const mrpt::utils::TRuntimeClassId* mrpt::poses::CPose2D::classinfo [static] |
double mrpt::poses::CPose2D::m_phi [protected] |
| Page generated by Doxygen 1.7.5 for MRPT 0.9.5 SVN: at Thu Oct 13 21:25:36 UTC 2011 |