MRPT
2.0.1
|
Declares a class that represents a Probability Distribution function (PDF) of a SE(3) pose (x,y,z, yaw, pitch, roll), in the form of a 6-dimensional grid of "voxels".
Definition at line 25 of file CPose3DPDFGrid.h.
#include <mrpt/poses/CPose3DPDFGrid.h>
Public Types | |
enum | { is_3D_val = 1 } |
enum | { is_PDF_val = 1 } |
using | type_value = CPose3D |
The type of the state the PDF represents. More... | |
using | self_t = CProbabilityDensityFunction< CPose3D, STATE_LEN > |
using | cov_mat_t = mrpt::math::CMatrixFixed< double, STATE_LEN, STATE_LEN > |
Covariance matrix type. More... | |
using | inf_mat_t = cov_mat_t |
Information matrix type. More... | |
Public Member Functions | |
CPose3DPDFGrid (const mrpt::math::TPose3D &bb_min=mrpt::math::TPose3D(-1., -1., -1., -M_PI, -.5 *M_PI, -.5 *M_PI), const mrpt::math::TPose3D &bb_max=mrpt::math::TPose3D(1., 1., 1., M_PI,.5 *M_PI,.5 *M_PI), double resolution_XYZ=0.10, double resolution_YPR=mrpt::DEG2RAD(10.0)) | |
Constructor: Initializes a, uniform distribution over the whole given range, given by a "rectangular" (6D) bounding box. More... | |
~CPose3DPDFGrid () override=default | |
Destructor. More... | |
void | copyFrom (const CPose3DPDF &o) override |
Copy operator, translating if necesary (for example, between particles and gaussian representations) More... | |
void | normalize () |
Normalizes the PDF, such as all voxels sum the unity. More... | |
void | uniformDistribution () |
Assigns the same value to all the cells in the grid, so the sum 1. More... | |
void | getMean (CPose3D &mean_pose) const override |
std::tuple< cov_mat_t, type_value > | getCovarianceAndMean () const override |
Returns an estimate of the pose covariance matrix (STATE_LENxSTATE_LEN cov matrix) and the mean, both at once. More... | |
bool | saveToTextFile (const std::string &dataFile) const override |
Save the contents of the 3D grid in one file, as a concatenation of (X,Y) slices. More... | |
void | changeCoordinatesReference (const CPose3D &newReferenceBase) override |
void | bayesianFusion (const CPose3DPDF &p1, const CPose3DPDF &p2) override |
Bayesian fusion of two pose distributions, then save the result in this object (WARNING: Currently only distributions of the same class can be fused! eg, gaussian with gaussian,etc) More... | |
void | inverse (CPose3DPDF &o) const override |
Returns a new PDF such as: NEW_PDF = (0,0,0) - THIS_PDF. More... | |
void | drawSingleSample (CPose3D &outPart) const override |
Draws a single sample from the distribution. More... | |
void | drawManySamples (size_t N, std::vector< mrpt::math::CVectorDouble > &outSamples) const override |
Draws a number of samples from the distribution, and saves as a list of 1x6 vectors, where each row contains a (x,y,z,yaw,pitch,roll) datum. More... | |
template<class OPENGL_SETOFOBJECTSPTR > | |
void | getAs3DObject (OPENGL_SETOFOBJECTSPTR &out_obj) const |
Returns a 3D representation of this PDF (it doesn't clear the current contents of out_obj, but append new OpenGL objects to that list) More... | |
template<class OPENGL_SETOFOBJECTSPTR > | |
OPENGL_SETOFOBJECTSPTR | getAs3DObject () const |
Returns a 3D representation of this PDF. 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... | |
virtual void | getMean (type_value &mean_point) const=0 |
Returns the mean, or mathematical expectation of the probability density distribution (PDF). More... | |
virtual void | getCovarianceAndMean (cov_mat_t &c, CPose3D &mean) const final |
void | getCovarianceDynAndMean (mrpt::math::CMatrixDouble &cov, type_value &mean_point) const |
Returns an estimate of the pose covariance matrix (STATE_LENxSTATE_LEN cov matrix) and the mean, both at once. More... | |
type_value | getMeanVal () const |
Returns the mean, or mathematical expectation of the probability density distribution (PDF). More... | |
void | getCovariance (mrpt::math::CMatrixDouble &cov) const |
Returns the estimate of the covariance matrix (STATE_LEN x STATE_LEN covariance matrix) More... | |
void | getCovariance (cov_mat_t &cov) const |
Returns the estimate of the covariance matrix (STATE_LEN x STATE_LEN covariance matrix) More... | |
cov_mat_t | getCovariance () const |
Returns the estimate of the covariance matrix (STATE_LEN x STATE_LEN covariance matrix) More... | |
virtual bool | isInfType () const |
Returns whether the class instance holds the uncertainty in covariance or information form. More... | |
virtual void | getInformationMatrix (inf_mat_t &inf) const |
Returns the information (inverse covariance) matrix (a STATE_LEN x STATE_LEN matrix) Unless reimplemented in derived classes, this method first reads the covariance, then invert it. More... | |
virtual void | drawSingleSample (CPose3D &outPart) const=0 |
Draws a single sample from the distribution. More... | |
double | getCovarianceEntropy () const |
Compute the entropy of the estimated covariance matrix. More... | |
void | setSize (const mrpt::math::TPose3D &bb_min, const mrpt::math::TPose3D &bb_max, double resolution_XYZ, double resolution_YPR) |
Changes the limits and size of the grid, erasing previous contents: More... | |
const double * | getByPos (double x, double y, double z, double yaw, double pitch, double roll) const |
Reads the contents of a cell. More... | |
double * | getByPos (double x, double y, double z, double yaw, double pitch, double roll) |
const double * | getByPos (const mrpt::math::TPose3D &p) const |
double * | getByPos (const mrpt::math::TPose3D &p) |
const double * | getByIndex (int cx, int cy, int cz, int cY, int cP, int cR) const |
Reads the contents of a cell. More... | |
double * | getByIndex (int cx, int cy, int cz, int cY, int cP, int cR) |
void | getAsMatrix (MATRIXLIKE &outMat, const double z, const double yaw, const double pitch, const double roll) const |
Returns a XY slice of the grid, for given constant z,yaw, pitch and roll. More... | |
mrpt::math::TPose3D | getMinBoundingBox () const |
Get info about the 6D grid. More... | |
mrpt::math::TPose3D | getMaxBoundingBox () const |
double | getResolutionXYZ () const |
double | getResolutionAngles () const |
void | fill (const double &val) |
auto | getSizeX () const |
auto | getSizeY () const |
auto | getSizeZ () const |
auto | getSizeYaw () const |
auto | getSizePitch () const |
auto | getSizeRoll () const |
auto | getTotalVoxelCount () const |
const std::vector< double > & | getData () const |
std::vector< double > & | getData () |
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... | |
Return "indexes" from coordinates | |
int | x2idx (double x) const |
int | y2idx (double y) const |
int | z2idx (double z) const |
int | yaw2idx (double yaw) const |
int | pitch2idx (double pitch) const |
int | roll2idx (double roll) const |
Return coordinates from "indexes" | |
double | idx2x (uint32_t cx) const |
double | idx2y (uint32_t cy) const |
double | idx2z (uint32_t cz) const |
double | idx2yaw (uint32_t cY) const |
double | idx2pitch (uint32_t cP) const |
double | idx2roll (uint32_t cR) const |
Static Public Member Functions | |
static CPose3DPDF * | createFrom2D (const CPosePDF &o) |
This is a static transformation method from 2D poses to 3D PDFs, preserving the representation type (particles->particles, Gaussians->Gaussians,etc) More... | |
static void | jacobiansPoseComposition (const CPose3D &x, const CPose3D &u, mrpt::math::CMatrixDouble66 &df_dx, mrpt::math::CMatrixDouble66 &df_du) |
This static method computes the pose composition Jacobians. More... | |
static constexpr bool | is_3D () |
static constexpr bool | is_PDF () |
Static Public Attributes | |
static constexpr size_t | state_length |
The length of the variable, for example, 3 for a 3D point, 6 for a 3D pose (x y z yaw pitch roll). More... | |
Protected Types | |
using | self_t = CPose3DGridTemplate< double > |
Protected Member Functions | |
void | update_cached_size_products () |
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 | |
mrpt::math::TPose3D | m_bb_min |
mrpt::math::TPose3D | m_bb_max |
double | m_resolutionXYZ |
Resolution of the grid. More... | |
double | m_resolutionYPR |
uint32_t | m_sizeX |
uint32_t | m_sizeY |
uint32_t | m_sizeZ |
uint32_t | m_sizeYaw |
uint32_t | m_sizePitch |
uint32_t | m_sizeRoll |
uint32_t | m_size_xy |
uint32_t | m_size_xyz |
uint32_t | m_size_xyzY |
uint32_t | m_size_xyzYP |
uint32_t | m_size_xyzYPR |
int | m_min_cidX |
Minimum "cell indexes" for each coordinate. More... | |
int | m_min_cidY |
int | m_min_cidZ |
int | m_min_cidYaw |
int | m_min_cidPitch |
int | m_min_cidRoll |
std::vector< double > | m_data |
The data. More... | |
RTTI stuff | |
using | Ptr = std::shared_ptr< mrpt::poses ::CPose3DPDFGrid > |
using | ConstPtr = std::shared_ptr< const mrpt::poses ::CPose3DPDFGrid > |
using | UniquePtr = std::unique_ptr< mrpt::poses ::CPose3DPDFGrid > |
using | ConstUniquePtr = std::unique_ptr< const mrpt::poses ::CPose3DPDFGrid > |
static const mrpt::rtti::TRuntimeClassId | runtimeClassId |
static constexpr const char * | className = "mrpt::poses" "::" "CPose3DPDFGrid" |
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::poses::CPose3DPDFGrid::ConstPtr = std::shared_ptr<const mrpt::poses :: CPose3DPDFGrid > |
Definition at line 27 of file CPose3DPDFGrid.h.
using mrpt::poses::CPose3DPDFGrid::ConstUniquePtr = std::unique_ptr<const mrpt::poses :: CPose3DPDFGrid > |
Definition at line 27 of file CPose3DPDFGrid.h.
|
inherited |
Covariance matrix type.
Definition at line 37 of file CProbabilityDensityFunction.h.
|
inherited |
Information matrix type.
Definition at line 39 of file CProbabilityDensityFunction.h.
using mrpt::poses::CPose3DPDFGrid::Ptr = std::shared_ptr< mrpt::poses :: CPose3DPDFGrid > |
A type for the associated smart pointer
Definition at line 27 of file CPose3DPDFGrid.h.
|
protectedinherited |
Definition at line 26 of file CPose3DGridTemplate.h.
|
inherited |
Definition at line 35 of file CProbabilityDensityFunction.h.
|
inherited |
The type of the state the PDF represents.
Definition at line 34 of file CProbabilityDensityFunction.h.
using mrpt::poses::CPose3DPDFGrid::UniquePtr = std::unique_ptr< mrpt::poses :: CPose3DPDFGrid > |
Definition at line 27 of file CPose3DPDFGrid.h.
|
inherited |
Enumerator | |
---|---|
is_3D_val |
Definition at line 101 of file CPose3DPDF.h.
|
inherited |
Enumerator | |
---|---|
is_PDF_val |
Definition at line 106 of file CPose3DPDF.h.
CPose3DPDFGrid::CPose3DPDFGrid | ( | const mrpt::math::TPose3D & | bb_min = mrpt::math::TPose3D(-1., -1., -1., -M_PI, -.5 * M_PI, -.5 * M_PI) , |
const mrpt::math::TPose3D & | bb_max = mrpt::math::TPose3D(1., 1., 1., M_PI, .5 * M_PI, .5 * M_PI) , |
||
double | resolution_XYZ = 0.10 , |
||
double | resolution_YPR = mrpt::DEG2RAD(10.0) |
||
) |
Constructor: Initializes a, uniform distribution over the whole given range, given by a "rectangular" (6D) bounding box.
Definition at line 29 of file CPose3DPDFGrid.cpp.
|
overridedefault |
Destructor.
|
staticprotected |
|
overridevirtual |
Bayesian fusion of two pose distributions, then save the result in this object (WARNING: Currently only distributions of the same class can be fused! eg, gaussian with gaussian,etc)
Implements mrpt::poses::CPose3DPDF.
Definition at line 158 of file CPose3DPDFGrid.cpp.
References THROW_EXCEPTION.
|
overridevirtual |
Implements mrpt::poses::CPose3DPDF.
Definition at line 152 of file CPose3DPDFGrid.cpp.
References THROW_EXCEPTION.
|
overridevirtual |
Returns a deep copy (clone) of the object, indepently of its class.
Implements mrpt::rtti::CObject.
|
overridevirtual |
Copy operator, translating if necesary (for example, between particles and gaussian representations)
Implements mrpt::poses::CPose3DPDF.
Definition at line 38 of file CPose3DPDFGrid.cpp.
References THROW_EXCEPTION.
|
inlinestatic |
Definition at line 27 of file CPose3DPDFGrid.h.
|
inlinestatic |
Definition at line 27 of file CPose3DPDFGrid.h.
|
staticinherited |
This is a static transformation method from 2D poses to 3D PDFs, preserving the representation type (particles->particles, Gaussians->Gaussians,etc)
Definition at line 49 of file CPose3DPDF.cpp.
References ASSERT_, CLASS_ID, cov2to3(), mrpt::poses::CPosePDF::GetRuntimeClass(), MRPT_END, MRPT_START, and THROW_EXCEPTION.
Referenced by mrpt::graphslam::deciders::CLoopCloserERD< GRAPH_T >::updateMapPartitions().
|
static |
|
inlinestatic |
Definition at line 27 of file CPose3DPDFGrid.h.
|
overridevirtual |
Draws a number of samples from the distribution, and saves as a list of 1x6 vectors, where each row contains a (x,y,z,yaw,pitch,roll) datum.
Reimplemented from mrpt::math::CProbabilityDensityFunction< CPose3D, 6 >.
Definition at line 175 of file CPose3DPDFGrid.cpp.
References THROW_EXCEPTION.
|
override |
Draws a single sample from the distribution.
Definition at line 170 of file CPose3DPDFGrid.cpp.
References THROW_EXCEPTION.
|
pure virtualinherited |
Draws a single sample from the distribution.
|
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().
|
inlineinherited |
Definition at line 281 of file CPose3DGridTemplate.h.
References mrpt::poses::CPose3DGridTemplate< T >::m_data, and val.
|
inlineinherited |
Returns a 3D representation of this PDF (it doesn't clear the current contents of out_obj, but append new OpenGL objects to that list)
Definition at line 122 of file CPose3DPDF.h.
References mrpt::opengl::posePDF2opengl().
|
inlineinherited |
Returns a 3D representation of this PDF.
Definition at line 133 of file CPose3DPDF.h.
References mrpt::opengl::posePDF2opengl().
|
inlineinherited |
Returns a XY slice of the grid, for given constant z,yaw, pitch and roll.
Definition at line 256 of file CPose3DGridTemplate.h.
References ASSERT_BELOW_, mrpt::poses::CPose3DGridTemplate< T >::getByIndex(), mrpt::poses::CPose3DGridTemplate< T >::m_sizePitch, mrpt::poses::CPose3DGridTemplate< T >::m_sizeRoll, mrpt::poses::CPose3DGridTemplate< T >::m_sizeX, mrpt::poses::CPose3DGridTemplate< T >::m_sizeY, mrpt::poses::CPose3DGridTemplate< T >::m_sizeYaw, mrpt::poses::CPose3DGridTemplate< T >::m_sizeZ, MRPT_END, MRPT_START, mrpt::obs::gnss::pitch, mrpt::poses::CPose3DGridTemplate< T >::pitch2idx(), mrpt::obs::gnss::roll, mrpt::poses::CPose3DGridTemplate< T >::roll2idx(), mrpt::poses::CPose3DGridTemplate< T >::yaw2idx(), and mrpt::poses::CPose3DGridTemplate< T >::z2idx().
|
inlineinherited |
Reads the contents of a cell.
Definition at line 233 of file CPose3DGridTemplate.h.
References ASSERT_, mrpt::poses::CPose3DGridTemplate< T >::m_data, mrpt::poses::CPose3DGridTemplate< T >::m_size_xy, mrpt::poses::CPose3DGridTemplate< T >::m_size_xyz, mrpt::poses::CPose3DGridTemplate< T >::m_size_xyzY, mrpt::poses::CPose3DGridTemplate< T >::m_size_xyzYP, mrpt::poses::CPose3DGridTemplate< T >::m_sizePitch, mrpt::poses::CPose3DGridTemplate< T >::m_sizeRoll, mrpt::poses::CPose3DGridTemplate< T >::m_sizeX, mrpt::poses::CPose3DGridTemplate< T >::m_sizeY, mrpt::poses::CPose3DGridTemplate< T >::m_sizeYaw, and mrpt::poses::CPose3DGridTemplate< T >::m_sizeZ.
|
inlineinherited |
Definition at line 246 of file CPose3DGridTemplate.h.
References mrpt::poses::CPose3DGridTemplate< T >::getByIndex().
|
inlineinherited |
Reads the contents of a cell.
Definition at line 206 of file CPose3DGridTemplate.h.
References mrpt::poses::CPose3DGridTemplate< T >::getByIndex(), mrpt::obs::gnss::pitch, mrpt::poses::CPose3DGridTemplate< T >::pitch2idx(), mrpt::obs::gnss::roll, mrpt::poses::CPose3DGridTemplate< T >::roll2idx(), mrpt::poses::CPose3DGridTemplate< T >::x2idx(), mrpt::poses::CPose3DGridTemplate< T >::y2idx(), mrpt::poses::CPose3DGridTemplate< T >::yaw2idx(), and mrpt::poses::CPose3DGridTemplate< T >::z2idx().
|
inlineinherited |
Definition at line 215 of file CPose3DGridTemplate.h.
References mrpt::poses::CPose3DGridTemplate< T >::getByPos(), mrpt::obs::gnss::pitch, and mrpt::obs::gnss::roll.
|
inlineinherited |
Definition at line 222 of file CPose3DGridTemplate.h.
References mrpt::poses::CPose3DGridTemplate< T >::getByPos(), mrpt::math::TPose3D::pitch, mrpt::math::TPose3D::roll, mrpt::math::TPose3D::x, mrpt::math::TPose3D::y, mrpt::math::TPose3D::yaw, and mrpt::math::TPose3D::z.
|
inlineinherited |
Definition at line 227 of file CPose3DGridTemplate.h.
References mrpt::poses::CPose3DGridTemplate< T >::getByPos(), mrpt::math::TPose3D::pitch, mrpt::math::TPose3D::roll, mrpt::math::TPose3D::x, mrpt::math::TPose3D::y, mrpt::math::TPose3D::yaw, and mrpt::math::TPose3D::z.
|
inlinestatic |
Definition at line 27 of file CPose3DPDFGrid.h.
|
inlineinherited |
Returns the estimate of the covariance matrix (STATE_LEN x STATE_LEN covariance matrix)
Definition at line 88 of file CProbabilityDensityFunction.h.
|
inlineinherited |
Returns the estimate of the covariance matrix (STATE_LEN x STATE_LEN covariance matrix)
Definition at line 98 of file CProbabilityDensityFunction.h.
|
inlineinherited |
Returns the estimate of the covariance matrix (STATE_LEN x STATE_LEN covariance matrix)
Definition at line 108 of file CProbabilityDensityFunction.h.
|
inlinefinalvirtualinherited |
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 54 of file CProbabilityDensityFunction.h.
|
overridevirtual |
Returns an estimate of the pose covariance matrix (STATE_LENxSTATE_LEN cov matrix) and the mean, both at once.
Implements mrpt::math::CProbabilityDensityFunction< CPose3D, 6 >.
Definition at line 68 of file CPose3DPDFGrid.cpp.
References mrpt::poses::CPose3DPDFParticles::getCovarianceAndMean(), mrpt::bayes::CParticleFilterData< T, STORAGE >::m_particles, and mrpt::poses::CPose3DPDFParticles::resetDeterministic().
|
inlineinherited |
Returns an estimate of the pose covariance matrix (STATE_LENxSTATE_LEN cov matrix) and the mean, both at once.
Definition at line 65 of file CProbabilityDensityFunction.h.
|
inlineinherited |
Compute the entropy of the estimated covariance matrix.
Definition at line 167 of file CProbabilityDensityFunction.h.
|
inlineinherited |
Definition at line 295 of file CPose3DGridTemplate.h.
References mrpt::poses::CPose3DGridTemplate< T >::m_data.
|
inlineinherited |
Definition at line 296 of file CPose3DGridTemplate.h.
References mrpt::poses::CPose3DGridTemplate< T >::m_data.
|
inlinevirtualinherited |
Returns the information (inverse covariance) matrix (a STATE_LEN x STATE_LEN matrix) Unless reimplemented in derived classes, this method first reads the covariance, then invert it.
Definition at line 130 of file CProbabilityDensityFunction.h.
|
inlineinherited |
Definition at line 276 of file CPose3DGridTemplate.h.
References mrpt::poses::CPose3DGridTemplate< T >::m_bb_max.
|
pure virtualinherited |
Returns the mean, or mathematical expectation of the probability density distribution (PDF).
|
override |
Definition at line 45 of file CPose3DPDFGrid.cpp.
References mrpt::poses::SE_average< 3 >::append(), and mrpt::poses::SE_average< 3 >::get_average().
|
inlineinherited |
Returns the mean, or mathematical expectation of the probability density distribution (PDF).
Definition at line 77 of file CProbabilityDensityFunction.h.
|
inlineinherited |
Get info about the 6D grid.
Definition at line 275 of file CPose3DGridTemplate.h.
References mrpt::poses::CPose3DGridTemplate< T >::m_bb_min.
|
inlineinherited |
Definition at line 279 of file CPose3DGridTemplate.h.
References mrpt::poses::CPose3DGridTemplate< T >::m_resolutionYPR.
|
inlineinherited |
Definition at line 278 of file CPose3DGridTemplate.h.
References mrpt::poses::CPose3DGridTemplate< T >::m_resolutionXYZ.
|
overridevirtual |
Returns information about the class of an object in runtime.
Reimplemented from mrpt::poses::CPose3DPDF.
|
static |
|
inlineinherited |
Definition at line 290 of file CPose3DGridTemplate.h.
References mrpt::poses::CPose3DGridTemplate< T >::m_sizePitch.
|
inlineinherited |
Definition at line 291 of file CPose3DGridTemplate.h.
References mrpt::poses::CPose3DGridTemplate< T >::m_sizeRoll.
|
inlineinherited |
Definition at line 286 of file CPose3DGridTemplate.h.
References mrpt::poses::CPose3DGridTemplate< T >::m_sizeX.
|
inlineinherited |
Definition at line 287 of file CPose3DGridTemplate.h.
References mrpt::poses::CPose3DGridTemplate< T >::m_sizeY.
|
inlineinherited |
Definition at line 289 of file CPose3DGridTemplate.h.
References mrpt::poses::CPose3DGridTemplate< T >::m_sizeYaw.
|
inlineinherited |
Definition at line 288 of file CPose3DGridTemplate.h.
References mrpt::poses::CPose3DGridTemplate< T >::m_sizeZ.
|
inlineinherited |
Definition at line 293 of file CPose3DGridTemplate.h.
References mrpt::poses::CPose3DGridTemplate< T >::m_size_xyzYPR.
|
inlineinherited |
Definition at line 147 of file CPose3DGridTemplate.h.
References ASSERT_, mrpt::poses::CPose3DGridTemplate< T >::m_bb_min, mrpt::poses::CPose3DGridTemplate< T >::m_resolutionYPR, mrpt::poses::CPose3DGridTemplate< T >::m_sizePitch, and mrpt::math::TPose3D::pitch.
|
inlineinherited |
Definition at line 152 of file CPose3DGridTemplate.h.
References ASSERT_, mrpt::poses::CPose3DGridTemplate< T >::m_bb_min, mrpt::poses::CPose3DGridTemplate< T >::m_resolutionYPR, mrpt::poses::CPose3DGridTemplate< T >::m_sizeRoll, and mrpt::math::TPose3D::roll.
|
inlineinherited |
Definition at line 126 of file CPose3DGridTemplate.h.
References ASSERT_, mrpt::poses::CPose3DGridTemplate< T >::m_bb_min, mrpt::poses::CPose3DGridTemplate< T >::m_resolutionXYZ, mrpt::poses::CPose3DGridTemplate< T >::m_sizeX, and mrpt::math::TPose3D::x.
|
inlineinherited |
Definition at line 131 of file CPose3DGridTemplate.h.
References ASSERT_, mrpt::poses::CPose3DGridTemplate< T >::m_bb_min, mrpt::poses::CPose3DGridTemplate< T >::m_resolutionXYZ, mrpt::poses::CPose3DGridTemplate< T >::m_sizeY, and mrpt::math::TPose3D::y.
|
inlineinherited |
Definition at line 142 of file CPose3DGridTemplate.h.
References ASSERT_, mrpt::poses::CPose3DGridTemplate< T >::m_bb_min, mrpt::poses::CPose3DGridTemplate< T >::m_resolutionYPR, mrpt::poses::CPose3DGridTemplate< T >::m_sizeYaw, and mrpt::math::TPose3D::yaw.
|
inlineinherited |
Definition at line 136 of file CPose3DGridTemplate.h.
References ASSERT_, mrpt::poses::CPose3DGridTemplate< T >::m_bb_min, mrpt::poses::CPose3DGridTemplate< T >::m_resolutionXYZ, mrpt::poses::CPose3DGridTemplate< T >::m_sizeZ, and mrpt::math::TPose3D::z.
|
overridevirtual |
Returns a new PDF such as: NEW_PDF = (0,0,0) - THIS_PDF.
Implements mrpt::poses::CPose3DPDF.
Definition at line 165 of file CPose3DPDFGrid.cpp.
References THROW_EXCEPTION.
|
inlinestaticinherited |
Definition at line 105 of file CPose3DPDF.h.
References mrpt::poses::CPose3DPDF::is_3D_val.
|
inlinestaticinherited |
Definition at line 110 of file CPose3DPDF.h.
References mrpt::poses::CPose3DPDF::is_PDF_val.
|
inlinevirtualinherited |
Returns whether the class instance holds the uncertainty in covariance or information form.
Reimplemented in mrpt::poses::CPose3DPDFGaussianInf.
Definition at line 123 of file CProbabilityDensityFunction.h.
|
staticinherited |
This static method computes the pose composition Jacobians.
See this techical report: http:///www.mrpt.org/6D_poses:equivalences_compositions_and_uncertainty
Direct equations (for the covariances) in yaw-pitch-roll are too complex. Make a way around them and consider instead this path:
Definition at line 129 of file CPose3DPDF.cpp.
References mrpt::math::CMatrixFixed< T, ROWS, COLS >::asEigen(), mrpt::math::CQuaternion< T >::crossProduct(), mrpt::poses::CPose3D::getAsQuaternion(), mrpt::math::MatrixBase< T, CMatrixFixed< T, ROWS, COLS > >::insertMatrix(), mrpt::poses::CPose3DQuatPDF::jacobiansPoseComposition(), mrpt::math::CQuaternion< T >::normalizationJacobian(), mrpt::obs::gnss::pitch, mrpt::poses::CPose3DQuat::quat(), mrpt::obs::gnss::roll, mrpt::math::CQuaternion< T >::rpy_and_jacobian(), mrpt::math::UNINITIALIZED_MATRIX, and mrpt::math::UNINITIALIZED_QUATERNION.
Referenced by mrpt::poses::CPose3DPDFGaussian::changeCoordinatesReference(), mrpt::poses::CPose3DPDFGaussianInf::operator+=(), mrpt::poses::CPose3DPDFGaussian::operator+=(), and Pose3DPDFGaussTests::testCompositionJacobian().
void CPose3DPDFGrid::normalize | ( | ) |
Normalizes the PDF, such as all voxels sum the unity.
Definition at line 182 of file CPose3DPDFGrid.cpp.
|
inlineinherited |
Definition at line 109 of file CPose3DGridTemplate.h.
References ASSERT_, mrpt::poses::CPose3DGridTemplate< T >::m_bb_min, mrpt::poses::CPose3DGridTemplate< T >::m_resolutionYPR, mrpt::poses::CPose3DGridTemplate< T >::m_sizePitch, mrpt::math::TPose3D::pitch, mrpt::obs::gnss::pitch, and mrpt::round().
|
inlineinherited |
|
overridevirtual |
Save the contents of the 3D grid in one file, as a concatenation of (X,Y) slices.
The size in X,Y,and the values for Z,yaw, pitch, roll, PHI are stored in another file named <filename>_dims.txt
Implements mrpt::math::CProbabilityDensityFunction< CPose3D, 6 >.
Definition at line 145 of file CPose3DPDFGrid.cpp.
References THROW_EXCEPTION.
|
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 113 of file CPose3DPDFGrid.cpp.
References ASSERT_EQUAL_, MRPT_THROW_UNKNOWN_SERIALIZATION_VERSION, and mrpt::serialization::CArchive::ReadAs().
|
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 94 of file CPose3DPDFGrid.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 95 of file CPose3DPDFGrid.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.
|
inlineinherited |
Changes the limits and size of the grid, erasing previous contents:
Definition at line 162 of file CPose3DGridTemplate.h.
References ASSERT_ABOVE_, bb_max, bb_min, mrpt::poses::CPose3DGridTemplate< T >::m_bb_max, mrpt::poses::CPose3DGridTemplate< T >::m_bb_min, mrpt::poses::CPose3DGridTemplate< T >::m_data, mrpt::poses::CPose3DGridTemplate< T >::m_min_cidPitch, mrpt::poses::CPose3DGridTemplate< T >::m_min_cidRoll, mrpt::poses::CPose3DGridTemplate< T >::m_min_cidX, mrpt::poses::CPose3DGridTemplate< T >::m_min_cidY, mrpt::poses::CPose3DGridTemplate< T >::m_min_cidYaw, mrpt::poses::CPose3DGridTemplate< T >::m_min_cidZ, mrpt::poses::CPose3DGridTemplate< T >::m_resolutionXYZ, mrpt::poses::CPose3DGridTemplate< T >::m_resolutionYPR, mrpt::poses::CPose3DGridTemplate< T >::m_size_xyzYPR, mrpt::poses::CPose3DGridTemplate< T >::m_sizePitch, mrpt::poses::CPose3DGridTemplate< T >::m_sizeRoll, mrpt::poses::CPose3DGridTemplate< T >::m_sizeX, mrpt::poses::CPose3DGridTemplate< T >::m_sizeY, mrpt::poses::CPose3DGridTemplate< T >::m_sizeYaw, mrpt::poses::CPose3DGridTemplate< T >::m_sizeZ, mrpt::round(), and mrpt::poses::CPose3DGridTemplate< T >::update_cached_size_products().
void CPose3DPDFGrid::uniformDistribution | ( | ) |
Assigns the same value to all the cells in the grid, so the sum 1.
Definition at line 196 of file CPose3DPDFGrid.cpp.
References val.
|
inlineprotectedinherited |
Definition at line 40 of file CPose3DGridTemplate.h.
References mrpt::poses::CPose3DGridTemplate< T >::m_size_xy, mrpt::poses::CPose3DGridTemplate< T >::m_size_xyz, mrpt::poses::CPose3DGridTemplate< T >::m_size_xyzY, mrpt::poses::CPose3DGridTemplate< T >::m_size_xyzYP, mrpt::poses::CPose3DGridTemplate< T >::m_size_xyzYPR, mrpt::poses::CPose3DGridTemplate< T >::m_sizePitch, mrpt::poses::CPose3DGridTemplate< T >::m_sizeRoll, mrpt::poses::CPose3DGridTemplate< T >::m_sizeX, mrpt::poses::CPose3DGridTemplate< T >::m_sizeY, mrpt::poses::CPose3DGridTemplate< T >::m_sizeYaw, and mrpt::poses::CPose3DGridTemplate< T >::m_sizeZ.
|
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.
|
inlineinherited |
Definition at line 85 of file CPose3DGridTemplate.h.
References ASSERT_, mrpt::poses::CPose3DGridTemplate< T >::m_bb_min, mrpt::poses::CPose3DGridTemplate< T >::m_resolutionXYZ, mrpt::poses::CPose3DGridTemplate< T >::m_sizeX, mrpt::round(), and mrpt::math::TPose3D::x.
|
inlineinherited |
Definition at line 91 of file CPose3DGridTemplate.h.
References ASSERT_, mrpt::poses::CPose3DGridTemplate< T >::m_bb_min, mrpt::poses::CPose3DGridTemplate< T >::m_resolutionXYZ, mrpt::poses::CPose3DGridTemplate< T >::m_sizeY, mrpt::round(), and mrpt::math::TPose3D::y.
|
inlineinherited |
Definition at line 103 of file CPose3DGridTemplate.h.
References ASSERT_, mrpt::poses::CPose3DGridTemplate< T >::m_bb_min, mrpt::poses::CPose3DGridTemplate< T >::m_resolutionYPR, mrpt::poses::CPose3DGridTemplate< T >::m_sizeYaw, mrpt::round(), and mrpt::math::TPose3D::yaw.
|
inlineinherited |
Definition at line 97 of file CPose3DGridTemplate.h.
References ASSERT_, mrpt::poses::CPose3DGridTemplate< T >::m_bb_min, mrpt::poses::CPose3DGridTemplate< T >::m_resolutionXYZ, mrpt::poses::CPose3DGridTemplate< T >::m_sizeZ, mrpt::round(), and mrpt::math::TPose3D::z.
|
static |
Definition at line 27 of file CPose3DPDFGrid.h.
|
protectedinherited |
Definition at line 29 of file CPose3DGridTemplate.h.
|
protectedinherited |
Definition at line 28 of file CPose3DGridTemplate.h.
|
protectedinherited |
The data.
Stored in this order:
m_data[ ci_x
Definition at line 64 of file CPose3DGridTemplate.h.
|
protectedinherited |
Definition at line 51 of file CPose3DGridTemplate.h.
|
protectedinherited |
Definition at line 51 of file CPose3DGridTemplate.h.
|
protectedinherited |
Minimum "cell indexes" for each coordinate.
Definition at line 50 of file CPose3DGridTemplate.h.
|
protectedinherited |
Definition at line 50 of file CPose3DGridTemplate.h.
|
protectedinherited |
Definition at line 51 of file CPose3DGridTemplate.h.
|
protectedinherited |
Definition at line 50 of file CPose3DGridTemplate.h.
|
protectedinherited |
Resolution of the grid.
Definition at line 32 of file CPose3DGridTemplate.h.
|
protectedinherited |
Definition at line 32 of file CPose3DGridTemplate.h.
|
protectedinherited |
Definition at line 38 of file CPose3DGridTemplate.h.
|
protectedinherited |
Definition at line 38 of file CPose3DGridTemplate.h.
|
protectedinherited |
Definition at line 38 of file CPose3DGridTemplate.h.
|
protectedinherited |
Definition at line 38 of file CPose3DGridTemplate.h.
|
protectedinherited |
Definition at line 38 of file CPose3DGridTemplate.h.
|
protectedinherited |
Definition at line 35 of file CPose3DGridTemplate.h.
|
protectedinherited |
Definition at line 35 of file CPose3DGridTemplate.h.
|
protectedinherited |
Definition at line 34 of file CPose3DGridTemplate.h.
|
protectedinherited |
Definition at line 34 of file CPose3DGridTemplate.h.
|
protectedinherited |
Definition at line 35 of file CPose3DGridTemplate.h.
|
protectedinherited |
Definition at line 34 of file CPose3DGridTemplate.h.
|
staticprotected |
Definition at line 27 of file CPose3DPDFGrid.h.
|
staticinherited |
The length of the variable, for example, 3 for a 3D point, 6 for a 3D pose (x y z yaw pitch roll).
Definition at line 32 of file CProbabilityDensityFunction.h.
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 |