38 cout <<
"Close the window to end.\n";
43 std::vector<CPointType> points;
44 const size_t nClusters =
47 for (
size_t cl = 0; cl < nClusters; cl++)
55 for (
size_t p = 0; p < nPts; p++)
65 std::vector<CPointType> centers;
66 vector<int> assignments;
72 cout <<
"Took: " << tictac.
Tac() * 1e3 <<
" ms.\n";
73 cout <<
"cost: " << cost << endl;
78 static const char colors[6] = {
'b',
'r',
'k',
'g',
'm',
'c'};
80 for (
size_t c = 0; c < nClusters; c++)
84 for (
size_t i = 0; i < points.size(); i++)
86 if (
size_t(assignments[i]) == c)
97 cout <<
"Press any key to generate another random dataset...\n";
109 catch (
const std::exception& e)
116 printf(
"Another exception!!");
A namespace of pseudo-random numbers generators of diferent distributions.
uint32_t drawUniform32bit()
Generate a uniformly distributed pseudo-random number using the MT19937 algorithm, in the whole range of 32-bit integers.
double Tac() noexcept
Stops the stopwatch.
A compile-time fixed-size numeric matrix container.
Create a GUI window and display plots with MATLAB-like interfaces and commands.
std::string std::string format(std::string_view fmt, ARGS &&... args)
void randomize(const uint32_t seed)
Initialize the PRNG from the given random seed.
A high-performance stopwatch, with typical resolution of nanoseconds.
void push_back(const T &val)
return_t drawUniform(const double Min, const double Max)
Generate a uniformly distributed pseudo-random number using the MT19937 algorithm, scaled to the selected range.
This base provides a set of functions for maths stuff.
double kmeanspp(const size_t k, const LIST_OF_VECTORS1 &points, std::vector< int > &assignments, LIST_OF_VECTORS2 *out_centers=nullptr, const size_t attempts=3)
k-means++ algorithm to cluster a list of N points of arbitrary dimensionality into exactly K clusters...
return_t drawGaussian1D(const double mean, const double std)
Generate a normally distributed pseudo-random number.
mrpt::gui::CDisplayWindow3D::Ptr win
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...
Classes for creating GUI windows for 2D and 3D visualization.
void Tic() noexcept
Starts the stopwatch.
CRandomGenerator & getRandomGenerator()
A static instance of a CRandomGenerator class, for use in single-thread applications.