66 vector<CRejectionSamplingRangeOnlyLocalization::TParticle> samples;
73 printf(
"Preparing...");
77 printf(
"Ok! %fms\n", 1000 * tictac.
Tac());
79 printf(
"Computing...");
82 printf(
"Ok! %fms\n", 1000 * tictac.
Tac());
84 FILE* f =
os::fopen(
"_out_samples.txt",
"wt");
85 vector<CRejectionSamplingRangeOnlyLocalization::TParticle>::iterator it;
86 for (it = samples.begin(); it != samples.end(); it++)
88 f,
"%f %f %f %e\n", it->d->x(), it->d->y(), it->d->phi(),
112 printf(
"Untyped excepcion!!");
A namespace of pseudo-random numbers generators of diferent distributions.
double Tac() noexcept
Stops the stopwatch.
int void fclose(FILE *f)
An OS-independent version of fclose.
void randomize(const uint32_t seed)
Initialize the PRNG from the given random seed.
A high-performance stopwatch, with typical resolution of nanoseconds.
Declares a class derived from "CObservation" that represents one (or more) range measurements to labe...
int32_t beaconID
The ID of the sensed beacon (or INVALID_BEACON_ID if unknown)
T::Ptr mapByClass(size_t ith=0) const
Returns the i'th map of a given class (or of a derived class), or empty smart pointer if there is no ...
void rejectionSampling(size_t desiredSamples, std::vector< TParticle > &outSamples, size_t timeoutTrials=1000)
Generates a set of N independent samples via rejection sampling.
A set of TMetricMapInitializer structures, passed to the constructor CMultiMetricMap::CMultiMetricMap...
#define ASSERT_(f)
Defines an assertion mechanism.
bool setParams(const mrpt::maps::CLandmarksMap &beaconsMap, const mrpt::obs::CObservationBeaconRanges &observation, float sigmaRanges, const mrpt::poses::CPose2D &oldPose, float robot_z=0, bool autoCheckAngleRanges=true)
The parameters used in the generation of random samples:
A class for storing a map of 3D probabilistic landmarks.
void loadFromConfigFile(const mrpt::config::CConfigFileBase &source, const std::string §ionName) override
Loads the configuration for the set of internal maps from a textual definition in an INI-like file...
mrpt::config::CConfigFile CConfigFile
std::deque< TMeasurement > sensedData
The list of observed ranges.
A class used to store a 3D point.
Classes for 2D/3D geometry representation, both of single values and probability density distribution...
float stdError
The "sigma" of the sensor, assuming a zero-mean Gaussian noise model.
int fprintf(FILE *fil, const char *format,...) noexcept MRPT_printf_format_check(2
An OS-independent version of fprintf.
float sensedDistance
The sensed range itself (in meters).
This is the global namespace for all Mobile Robot Programming Toolkit (MRPT) libraries.
A class used to store a 2D pose, including the 2D coordinate point and a heading (phi) angle...
mrpt::poses::CPoint3D sensorLocationOnRobot
Position of the sensor on the robot.
std::string exception_to_str(const std::exception &e)
Builds a nice textual representation of a nested exception, which if generated using MRPT macros (THR...
Each one of the measurements.
FILE * fopen(const char *fileName, const char *mode) noexcept
An OS-independent version of fopen.
void Tic() noexcept
Starts the stopwatch.
This class stores any customizable set of metric maps.
CRandomGenerator & getRandomGenerator()
A static instance of a CRandomGenerator class, for use in single-thread applications.
An implementation of rejection sampling for generating 2D robot pose from range-only measurements wit...
void setListOfMaps(const mrpt::maps::TSetOfMetricMapInitializers &init)
Sets the list of internal map according to the passed list of map initializers (current maps will be ...