Go to the documentation of this file.
32 "CReflectivityGridMap2D,reflectivityMap",
50 sectionNamePrefix +
string(
"_creationOpts");
57 insertionOpts.loadFromConfigFile(
58 source, sectionNamePrefix +
string(
"_insertOpts"));
62 std::ostream& out)
const
70 this->insertionOpts.dumpToTextStream(out);
96 double x_min,
double x_max,
double y_min,
double y_max,
double resolution)
97 : CDynamicGrid<
int8_t>(x_min, x_max, y_min, y_max, resolution),
124 robotPose2D =
CPose2D(*robotPose);
125 robotPose3D = (*robotPose);
150 const cell_t logodd_observation =
165 new_x_min, new_x_max, new_y_min, new_y_max, default_cell,
169 cell =
cellByPos(sensor_pose.
x(), sensor_pose.
y());
172 cell !=
nullptr,
"cell==nullptr even after resizing grid!?");
175 const int cell_old =
static_cast<int>(*cell);
176 int cell_new = cell_old +
static_cast<int>(logodd_observation);
180 *cell =
static_cast<cell_t>(cell_new);
284 std::ostream& out)
const
287 "\n----------- [CReflectivityGridMap2D::TInsertionOptions] "
288 "------------ \n\n");
320 CImage&
img,
bool verticalFlip,
bool forceRGB)
const
326 unsigned char* destPtr;
343 unsigned char* destPtr;
372 mrpt::make_aligned_shared<opengl::CTexturedPlane>();
381 unsigned char* destPtr_color;
382 unsigned char* destPtr_trans;
386 destPtr_color = imgColor(0,
y);
387 destPtr_trans = imgTrans(0,
y);
391 *destPtr_color++ = cell255;
394 *destPtr_trans++ = auxC > 0 ? (auxC << 1) : ((-auxC) << 1);
398 outObj->assignImage_fast(imgColor, imgTrans);
399 outSetOfObj->insert(outObj);
void keep_min(T &var, const K test_val)
If the second argument is below the first one, set the first argument to this lower value.
void dumpToTextStream_map_specific(std::ostream &out) const override
mrpt::maps::CReflectivityGridMap2D::TInsertionOptions insertionOpts
void composeFrom(const CPose3D &A, const CPose3D &B)
Makes "this = A (+) B"; this method is slightly more efficient than "this= A + B;" since it avoids th...
bool internal_insertObservation(const mrpt::obs::CObservation *obs, const mrpt::poses::CPose3D *robotPose=nullptr) override
Internal method called by insertObservation()
bool isEmpty() const override
Returns true if the map is empty/no observation has been inserted.
std::shared_ptr< CTexturedPlane > Ptr
#define MRPT_LOAD_CONFIG_VAR( variableName, variableType, configFileObject, sectionNameStr)
An useful macro for loading variables stored in a INI-like file under a key with the same name that t...
bool enableSaveAs3DObject
(Default=true) If false, calling CMetricMap::getAs3DObject() will have no effects
int16_t channel
The reflectivity channel for this map.
virtual void resize(double new_x_min, double new_x_max, double new_y_min, double new_y_max, const int8_t &defaultValueNewCells, double additionalMarginMeters=2.0)
Changes the size of the grid, maintaining previous contents.
float l2p(const cell_t l)
Scales an integer representation of the log-odd into a real valued probability in [0,...
Declares a class derived from "CObservation" that encapsules a single short-range reflectivity measur...
static const int8_t CELLTYPE_MIN
void dumpToTextStream(std::ostream &out) const override
This method should clearly display all the contents of the structure in textual form,...
#define MAP_DEFINITION_REGISTER(_CLASSNAME_STRINGS, _CLASSNAME_WITH_NS)
Registers one map class into TMetricMapInitializer factory.
GLsizei GLsizei GLuint * obj
TInsertionOptions()
Default values loader.
#define MRPT_UNUSED_PARAM(a)
Determines whether this is an X86 or AMD64 platform.
int8_t * cellByPos(double x, double y)
Returns a pointer to the contents of a cell given by its coordinates, or nullptr if it is out of the ...
Parameters for CMetricMap::compute3DMatchingRatio()
float sensorStdNoise
1-sigma of the sensor Gaussian noise (in the same normalized units than reflectivityLevel)
float reflectivityLevel
The read reflectivity level, in the range [0,1] (0=black, 1=white).
double internal_computeObservationLikelihood(const mrpt::obs::CObservation *obs, const mrpt::poses::CPose3D &takenFrom) override
Internal method called by computeObservationLikelihood()
This is the global namespace for all Mobile Robot Programming Toolkit (MRPT) libraries.
static const int8_t CELLTYPE_MAX
CReflectivityGridMap2D(double x_min=-2, double x_max=2, double y_min=-2, double y_max=2, double resolution=0.1)
Constructor
Virtual base for specifying the kind and parameters of one map (normally, to be inserted into mrpt::m...
cell_t p2l(const float p)
Scales a real valued probability in [0,1] to an integer representation of: log(p)-log(1-p) in the val...
TMapGenericParams genericMapParams
Common params to all maps.
T square(const T x)
Inline function for the square of a number.
Classes for 2D/3D geometry representation, both of single values and probability density distribution...
uint8_t serializeGetVersion() const override
Must return the current versioning number of the object.
std::vector< int8_t > m_map
The cells
This namespace contains representation of robot actions and observations.
Virtual base class for "archives": classes abstracting I/O streams.
GLsizei GLsizei GLchar * source
One static instance of this struct should exist in any class implementing CLogOddsGridMap2D to hold t...
int16_t channel
The channel for this observation.
Declares a virtual base class for all metric maps storage classes.
void WriteBuffer(const void *Buffer, size_t Count)
Writes a block of bytes to the stream from Buffer.
void loadFromConfigFile_map_specific(const mrpt::config::CConfigFileBase &source, const std::string §ionNamePrefix) override
Load all map-specific params.
#define ASSERT_BELOWEQ_(__A, __B)
This class allows loading and storing values and vectors of different types from a configuration text...
std::string format(const char *fmt,...) MRPT_printf_format_check(1
A std::string version of C sprintf.
void keep_max(T &var, const K test_val)
If the second argument is above the first one, set the first argument to this higher value.
A class used to store a 2D pose, including the 2D coordinate point and a heading (phi) angle.
double x() const
Common members of all points & poses classes.
A class used to store a 3D pose (a 3D translation + a rotation in 3D).
string iniFile(myDataDir+string("benchmark-options.ini"))
#define IS_CLASS(ptrObj, class_name)
Evaluates to true if the given pointer to an object (derived from mrpt::rtti::CObject) is of the give...
void serializeFrom(mrpt::serialization::CArchive &in, uint8_t serial_version) override
Pure virtual method for reading (deserializing) from an abstract archive.
#define LOADABLEOPTS_DUMP_VAR(variableName, variableType)
Macro for dumping a variable to a stream, within the method "dumpToTextStream(out)" (Variable types a...
static CLogOddsGridMapLUT< cell_t > m_logodd_lut
Lookup tables for log-odds.
std::shared_ptr< CSetOfObjects > Ptr
#define IMPLEMENTS_SERIALIZABLE(class_name, base, NameSpace)
This must be inserted in all CSerializable classes implementation files.
void getAsImage(mrpt::img::CImage &img, bool verticalFlip=false, bool forceRGB=false) const
Returns the grid as a 8-bit graylevel image, where each pixel is a cell (output image is RGB only if ...
A class for storing images as grayscale or RGB bitmaps.
#define ASSERTMSG_(f, __ERROR_MSG)
Defines an assertion mechanism.
void dyngridcommon_writeToStream(STREAM &out) const
static mrpt::maps::CMetricMap * internal_CreateFromMapDefinition(const mrpt::maps::TMetricMapInitializer &def)
#define ASSERT_ABOVEEQ_(__A, __B)
bool saveToTextFile(const std::string &fileName) const
Saves a float representation of the grid (via "cell2float()") to a text file.
void fill(const int8_t &value)
Fills all the cells with the same value.
void loadFromConfigFile(const mrpt::config::CConfigFileBase &source, const std::string §ion) override
This method load the options from a ".ini"-like file or memory-stored string list.
void dyngridcommon_readFromStream(STREAM &in, bool cast_from_float=false)
uint8_t l2p_255(const cell_t l)
Scales an integer representation of the log-odd into a linear scale [0,255], using p=exp(l)/(1+exp(l)...
A 2D grid map representing the reflectivity of the environment (for example, measured with an IR prox...
Declares a class that represents any robot's observation.
This base provides a set of functions for maths stuff.
void serializeTo(mrpt::serialization::CArchive &out) const override
Pure virtual method for writing (serializing) to an abstract archive.
GLsizei const GLchar ** string
int8_t cell_t
The type of cells.
mrpt::maps::CReflectivityGridMap2D::TInsertionOptions insertionOptions
#define MRPT_THROW_UNKNOWN_SERIALIZATION_VERSION(__V)
For use in CSerializable implementations.
float compute3DMatchingRatio(const mrpt::maps::CMetricMap *otherMap, const mrpt::poses::CPose3D &otherMapPose, const TMatchingRatioParams ¶ms) const override
See docs in base class: in this class this always returns 0.
void internal_clear() override
Internal method called by clear()
unsigned __int32 uint32_t
mrpt::poses::CPose3D sensorPose
The pose of this sensor in robot's local coordinates.
double min_x
See CReflectivityGridMap2DOptions::CReflectivityGridMap2DOptions.
This namespace provides a OS-independent interface to many useful functions: filenames manipulation,...
GLenum const GLfloat * params
void saveMetricMapRepresentationToFile(const std::string &filNamePrefix) const override
This virtual method saves the map to a file "filNamePrefix"+< some_file_extension >,...
void getAs3DObject(mrpt::opengl::CSetOfObjects::Ptr &outObj) const override
Returns a 3D object representing the map.
Page generated by Doxygen 1.8.17 for MRPT 1.9.9 Git: ad3a9d8ae Tue May 1 23:10:22 2018 -0700 at mié 12 jul 2023 10:03:34 CEST | |