A 2D grid of dynamic size which stores any kind of data at each cell.
T | The type of each cell in the 2D grid. |
Definition at line 40 of file CDynamicGrid.h.
#include <mrpt/utils/CDynamicGrid.h>
Public Member Functions | |
CDynamicGrid (double x_min=-10.0, double x_max=10.0, double y_min=-10.0f, double y_max=10.0f, double resolution=0.10f) | |
Constructor. More... | |
virtual | ~CDynamicGrid () |
Destructor. More... | |
void | setSize (const double x_min, const double x_max, const double y_min, const double y_max, const double resolution, const T *fill_value=NULL) |
Changes the size of the grid, ERASING all previous contents. More... | |
void | clear () |
Erase the contents of all the cells. More... | |
void | fill (const T &value) |
Fills all the cells with the same value. More... | |
virtual void | resize (double new_x_min, double new_x_max, double new_y_min, double new_y_max, const T &defaultValueNewCells, double additionalMarginMeters=2.0) |
Changes the size of the grid, maintaining previous contents. More... | |
T * | cellByPos (double x, double y) |
Returns a pointer to the contents of a cell given by its coordinates, or NULL if it is out of the map extensions. More... | |
const T * | cellByPos (double x, double y) const |
T * | cellByIndex (unsigned int cx, unsigned int cy) |
Returns a pointer to the contents of a cell given by its cell indexes, or NULL if it is out of the map extensions. More... | |
const T * | cellByIndex (unsigned int cx, unsigned int cy) const |
Returns a pointer to the contents of a cell given by its cell indexes, or NULL if it is out of the map extensions. More... | |
size_t | getSizeX () const |
Returns the horizontal size of grid map in cells count. More... | |
size_t | getSizeY () const |
Returns the vertical size of grid map in cells count. More... | |
double | getXMin () const |
Returns the "x" coordinate of left side of grid map. More... | |
double | getXMax () const |
Returns the "x" coordinate of right side of grid map. More... | |
double | getYMin () const |
Returns the "y" coordinate of top side of grid map. More... | |
double | getYMax () const |
Returns the "y" coordinate of bottom side of grid map. More... | |
double | getResolution () const |
Returns the resolution of the grid map. More... | |
int | x2idx (double x) const |
Transform a coordinate values into cell indexes. More... | |
int | y2idx (double y) const |
int | xy2idx (double x, double y) const |
void | idx2cxcy (const int &idx, int &cx, int &cy) const |
Transform a global (linear) cell index value into its corresponding (x,y) cell indexes. More... | |
double | idx2x (int cx) const |
Transform a cell index into a coordinate value of the cell central point. More... | |
double | idx2y (int cy) const |
template<class MAT > | |
void | getAsMatrix (MAT &m) const |
Get the entire grid as a matrix. More... | |
virtual float | cell2float (const T &c) const |
The user must implement this in order to provide "saveToTextFile" a way to convert each cell into a numeric value. More... | |
bool | saveToTextFile (const std::string &fileName) const |
Saves a float representation of the grid (via "cell2float()") to a text file. More... | |
Protected Member Functions | |
std::vector< T > & | m_map_castaway_const () const |
Used only from logically const method that really need to modify the object. More... | |
void | dyngridcommon_writeToStream (mrpt::utils::CStream &out) const |
void | dyngridcommon_readFromStream (mrpt::utils::CStream &in, bool cast_from_float=false) |
Protected Attributes | |
std::vector< T > | m_map |
The cells. More... | |
double | m_x_min |
double | m_x_max |
double | m_y_min |
double | m_y_max |
double | m_resolution |
size_t | m_size_x |
size_t | m_size_y |
|
inline |
Constructor.
Definition at line 52 of file CDynamicGrid.h.
|
inlinevirtual |
Destructor.
Definition at line 60 of file CDynamicGrid.h.
|
inlinevirtual |
The user must implement this in order to provide "saveToTextFile" a way to convert each cell into a numeric value.
Reimplemented in mrpt::maps::CReflectivityGridMap2D.
Definition at line 274 of file CDynamicGrid.h.
|
inline |
Returns a pointer to the contents of a cell given by its cell indexes, or NULL if it is out of the map extensions.
Definition at line 203 of file CDynamicGrid.h.
Referenced by mrpt::maps::CLandmarksMap::computeLikelihood_RSLC_2007(), mrpt::maps::COccupancyGridMap2D::getBasisCell(), mrpt::maps::COccupancyGridMap2D::getVoroniClearance(), mrpt::math::CAtan2LookUpTableMultiRes::resize(), mrpt::maps::COccupancyGridMap2D::setBasisCell(), mrpt::maps::COccupancyGridMap2D::setVoroniClearance(), and mrpt::maps::CGasConcentrationGridMap2D::simulateAdvection().
|
inline |
Returns a pointer to the contents of a cell given by its cell indexes, or NULL if it is out of the map extensions.
Definition at line 212 of file CDynamicGrid.h.
|
inline |
Returns a pointer to the contents of a cell given by its coordinates, or NULL if it is out of the map extensions.
Definition at line 183 of file CDynamicGrid.h.
Referenced by mrpt::math::CAtan2LookUpTableMultiRes::atan2(), mrpt::maps::CGasConcentrationGridMap2D::getWindAs3DObject(), and mrpt::slam::CRejectionSamplingRangeOnlyLocalization::setParams().
|
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 192 of file CDynamicGrid.h.
|
inline |
Erase the contents of all the cells.
Definition at line 94 of file CDynamicGrid.h.
Referenced by mrpt::maps::COccupancyGridMap2D::copyMapContentFrom(), mrpt::maps::COccupancyGridMap2D::freeMap(), and mrpt::maps::COccupancyGridMap2D::setSize().
|
inlineprotected |
Definition at line 300 of file CDynamicGrid.h.
|
inlineprotected |
Definition at line 295 of file CDynamicGrid.h.
|
inline |
Fills all the cells with the same value.
Definition at line 101 of file CDynamicGrid.h.
Referenced by mrpt::maps::CGasConcentrationGridMap2D::internal_clear(), and mrpt::slam::CRejectionSamplingRangeOnlyLocalization::setParams().
|
inline |
Get the entire grid as a matrix.
MAT | The type of the matrix, typically a mrpt::math::CMatrixDouble. |
[out] | m | The output matrix; will be set automatically to the correct size. Entry (cy,cx) in the matrix contains the grid cell with indices (cx,cy). |
Definition at line 263 of file CDynamicGrid.h.
|
inline |
Returns the resolution of the grid map.
Definition at line 238 of file CDynamicGrid.h.
Referenced by mrpt::nav::CPTG_DiffDrive_CollisionGridBased::internal_initialize().
|
inline |
Returns the horizontal size of grid map in cells count.
Definition at line 220 of file CDynamicGrid.h.
Referenced by mrpt::maps::CLandmarksMap::computeLikelihood_RSLC_2007(), mrpt::maps::COccupancyGridMap2D::getBasisCell(), mrpt::maps::COccupancyGridMap2D::getVoroniClearance(), mrpt::maps::CGasConcentrationGridMap2D::getWindAs3DObject(), mrpt::nav::CPTG_DiffDrive_CollisionGridBased::internal_initialize(), mrpt::math::CAtan2LookUpTableMultiRes::resize(), mrpt::utils::CDynamicGrid< TRandomFieldCell >::saveToTextFile(), mrpt::maps::COccupancyGridMap2D::setBasisCell(), mrpt::maps::COccupancyGridMap2D::setVoroniClearance(), and mrpt::maps::CGasConcentrationGridMap2D::simulateAdvection().
|
inline |
Returns the vertical size of grid map in cells count.
Definition at line 223 of file CDynamicGrid.h.
Referenced by mrpt::maps::CLandmarksMap::computeLikelihood_RSLC_2007(), mrpt::maps::COccupancyGridMap2D::getBasisCell(), mrpt::maps::COccupancyGridMap2D::getVoroniClearance(), mrpt::maps::CGasConcentrationGridMap2D::getWindAs3DObject(), mrpt::nav::CPTG_DiffDrive_CollisionGridBased::internal_initialize(), mrpt::math::CAtan2LookUpTableMultiRes::resize(), mrpt::utils::CDynamicGrid< TRandomFieldCell >::saveToTextFile(), mrpt::maps::COccupancyGridMap2D::setBasisCell(), mrpt::maps::COccupancyGridMap2D::setVoroniClearance(), and mrpt::maps::CGasConcentrationGridMap2D::simulateAdvection().
|
inline |
Returns the "x" coordinate of right side of grid map.
Definition at line 229 of file CDynamicGrid.h.
|
inline |
Returns the "x" coordinate of left side of grid map.
Definition at line 226 of file CDynamicGrid.h.
|
inline |
Returns the "y" coordinate of bottom side of grid map.
Definition at line 235 of file CDynamicGrid.h.
|
inline |
Returns the "y" coordinate of top side of grid map.
Definition at line 232 of file CDynamicGrid.h.
|
inline |
Transform a global (linear) cell index value into its corresponding (x,y) cell indexes.
Definition at line 246 of file CDynamicGrid.h.
|
inline |
Transform a cell index into a coordinate value of the cell central point.
Definition at line 253 of file CDynamicGrid.h.
Referenced by mrpt::nav::CPTG_DiffDrive_CollisionGridBased::internal_initialize(), and mrpt::math::CAtan2LookUpTableMultiRes::resize().
|
inline |
Definition at line 254 of file CDynamicGrid.h.
Referenced by mrpt::nav::CPTG_DiffDrive_CollisionGridBased::internal_initialize(), and mrpt::math::CAtan2LookUpTableMultiRes::resize().
|
inlineprotected |
Used only from logically const method that really need to modify the object.
Definition at line 45 of file CDynamicGrid.h.
|
inlinevirtual |
Changes the size of the grid, maintaining previous contents.
Definition at line 109 of file CDynamicGrid.h.
|
inline |
Saves a float representation of the grid (via "cell2float()") to a text file.
Definition at line 280 of file CDynamicGrid.h.
|
inline |
Changes the size of the grid, ERASING all previous contents.
If fill_value is left as NULL, the contents of cells may be undefined (some will remain with their old values, the new ones will have the default cell value, but the location of old values may change wrt their old places). If fill_value is not NULL, it is assured that all cells will have a copy of that value after resizing.
Definition at line 69 of file CDynamicGrid.h.
Referenced by mrpt::utils::CDynamicGrid< TRandomFieldCell >::CDynamicGrid(), mrpt::maps::CGasConcentrationGridMap2D::CGasConcentrationGridMap2D(), and mrpt::nav::CPTG_DiffDrive_CollisionGridBased::internal_initialize().
|
inline |
Transform a coordinate values into cell indexes.
Definition at line 241 of file CDynamicGrid.h.
Referenced by mrpt::utils::CDynamicGrid< TRandomFieldCell >::cellByPos(), mrpt::maps::CLandmarksMap::computeLikelihood_RSLC_2007(), mrpt::nav::CPTG_DiffDrive_CollisionGridBased::internal_initialize(), and mrpt::utils::CDynamicGrid< TRandomFieldCell >::xy2idx().
|
inline |
Definition at line 243 of file CDynamicGrid.h.
|
inline |
Definition at line 242 of file CDynamicGrid.h.
Referenced by mrpt::utils::CDynamicGrid< TRandomFieldCell >::cellByPos(), mrpt::maps::CLandmarksMap::computeLikelihood_RSLC_2007(), mrpt::nav::CPTG_DiffDrive_CollisionGridBased::internal_initialize(), and mrpt::utils::CDynamicGrid< TRandomFieldCell >::xy2idx().
|
protected |
The cells.
Definition at line 43 of file CDynamicGrid.h.
Referenced by mrpt::utils::CDynamicGrid< TRandomFieldCell >::cellByIndex(), mrpt::utils::CDynamicGrid< TRandomFieldCell >::cellByPos(), mrpt::utils::CDynamicGrid< TRandomFieldCell >::clear(), mrpt::utils::CDynamicGrid< TRandomFieldCell >::dyngridcommon_readFromStream(), mrpt::utils::CDynamicGrid< TRandomFieldCell >::fill(), mrpt::utils::CDynamicGrid< TRandomFieldCell >::getAsMatrix(), mrpt::utils::CDynamicGrid< TRandomFieldCell >::m_map_castaway_const(), mrpt::utils::CDynamicGrid< TRandomFieldCell >::resize(), and mrpt::utils::CDynamicGrid< TRandomFieldCell >::setSize().
|
protected |
Definition at line 47 of file CDynamicGrid.h.
Referenced by mrpt::utils::CDynamicGrid< TRandomFieldCell >::dyngridcommon_readFromStream(), mrpt::utils::CDynamicGrid< TRandomFieldCell >::dyngridcommon_writeToStream(), mrpt::utils::CDynamicGrid< TRandomFieldCell >::getResolution(), mrpt::utils::CDynamicGrid< TRandomFieldCell >::idx2x(), mrpt::utils::CDynamicGrid< TRandomFieldCell >::idx2y(), mrpt::utils::CDynamicGrid< TRandomFieldCell >::resize(), mrpt::utils::CDynamicGrid< TRandomFieldCell >::setSize(), mrpt::utils::CDynamicGrid< TRandomFieldCell >::x2idx(), and mrpt::utils::CDynamicGrid< TRandomFieldCell >::y2idx().
|
protected |
Definition at line 48 of file CDynamicGrid.h.
Referenced by mrpt::utils::CDynamicGrid< TRandomFieldCell >::cellByIndex(), mrpt::utils::CDynamicGrid< TRandomFieldCell >::cellByPos(), mrpt::utils::CDynamicGrid< TRandomFieldCell >::clear(), mrpt::utils::CDynamicGrid< TRandomFieldCell >::dyngridcommon_readFromStream(), mrpt::utils::CDynamicGrid< TRandomFieldCell >::dyngridcommon_writeToStream(), mrpt::utils::CDynamicGrid< TRandomFieldCell >::getAsMatrix(), mrpt::utils::CDynamicGrid< TRandomFieldCell >::getSizeX(), mrpt::utils::CDynamicGrid< TRandomFieldCell >::idx2cxcy(), mrpt::utils::CDynamicGrid< TRandomFieldCell >::resize(), mrpt::utils::CDynamicGrid< TRandomFieldCell >::setSize(), and mrpt::utils::CDynamicGrid< TRandomFieldCell >::xy2idx().
|
protected |
Definition at line 48 of file CDynamicGrid.h.
Referenced by mrpt::utils::CDynamicGrid< TRandomFieldCell >::cellByIndex(), mrpt::utils::CDynamicGrid< TRandomFieldCell >::cellByPos(), mrpt::utils::CDynamicGrid< TRandomFieldCell >::clear(), mrpt::utils::CDynamicGrid< TRandomFieldCell >::dyngridcommon_readFromStream(), mrpt::utils::CDynamicGrid< TRandomFieldCell >::dyngridcommon_writeToStream(), mrpt::utils::CDynamicGrid< TRandomFieldCell >::getAsMatrix(), mrpt::utils::CDynamicGrid< TRandomFieldCell >::getSizeY(), mrpt::utils::CDynamicGrid< TRandomFieldCell >::resize(), and mrpt::utils::CDynamicGrid< TRandomFieldCell >::setSize().
|
protected |
Definition at line 47 of file CDynamicGrid.h.
Referenced by mrpt::utils::CDynamicGrid< TRandomFieldCell >::dyngridcommon_readFromStream(), mrpt::utils::CDynamicGrid< TRandomFieldCell >::dyngridcommon_writeToStream(), mrpt::utils::CDynamicGrid< TRandomFieldCell >::getXMax(), mrpt::utils::CDynamicGrid< TRandomFieldCell >::resize(), and mrpt::utils::CDynamicGrid< TRandomFieldCell >::setSize().
|
protected |
Definition at line 47 of file CDynamicGrid.h.
Referenced by mrpt::utils::CDynamicGrid< TRandomFieldCell >::dyngridcommon_readFromStream(), mrpt::utils::CDynamicGrid< TRandomFieldCell >::dyngridcommon_writeToStream(), mrpt::utils::CDynamicGrid< TRandomFieldCell >::getXMin(), mrpt::utils::CDynamicGrid< TRandomFieldCell >::idx2x(), mrpt::utils::CDynamicGrid< TRandomFieldCell >::resize(), mrpt::utils::CDynamicGrid< TRandomFieldCell >::setSize(), and mrpt::utils::CDynamicGrid< TRandomFieldCell >::x2idx().
|
protected |
Definition at line 47 of file CDynamicGrid.h.
Referenced by mrpt::utils::CDynamicGrid< TRandomFieldCell >::dyngridcommon_readFromStream(), mrpt::utils::CDynamicGrid< TRandomFieldCell >::dyngridcommon_writeToStream(), mrpt::utils::CDynamicGrid< TRandomFieldCell >::getYMax(), mrpt::utils::CDynamicGrid< TRandomFieldCell >::resize(), and mrpt::utils::CDynamicGrid< TRandomFieldCell >::setSize().
|
protected |
Definition at line 47 of file CDynamicGrid.h.
Referenced by mrpt::utils::CDynamicGrid< TRandomFieldCell >::dyngridcommon_readFromStream(), mrpt::utils::CDynamicGrid< TRandomFieldCell >::dyngridcommon_writeToStream(), mrpt::utils::CDynamicGrid< TRandomFieldCell >::getYMin(), mrpt::utils::CDynamicGrid< TRandomFieldCell >::idx2y(), mrpt::utils::CDynamicGrid< TRandomFieldCell >::resize(), mrpt::utils::CDynamicGrid< TRandomFieldCell >::setSize(), and mrpt::utils::CDynamicGrid< TRandomFieldCell >::y2idx().
Page generated by Doxygen 1.8.14 for MRPT 1.5.9 Git: 690a4699f Wed Apr 15 19:29:53 2020 +0200 at miƩ abr 15 19:30:12 CEST 2020 |