30 const CMatrixDouble& allData,
const std::vector<size_t>& useIndices,
31 vector<CMatrixDouble>& fitModels)
33 ASSERT_(useIndices.size() == 3);
36 allData(0, useIndices[0]), allData(1, useIndices[0]),
37 allData(2, useIndices[0]));
39 allData(0, useIndices[1]), allData(1, useIndices[1]),
40 allData(2, useIndices[1]));
42 allData(0, useIndices[2]), allData(1, useIndices[2]),
43 allData(2, useIndices[2]));
52 for (
size_t i = 0; i < 4; i++) M(0, i) = plane.coefs[i];
62 const CMatrixDouble& allData,
const vector<CMatrixDouble>& testModels,
63 const double distanceThreshold,
unsigned int& out_bestModelIndex,
64 std::vector<size_t>& out_inlierIndices)
66 ASSERT_(testModels.size() == 1);
67 out_bestModelIndex = 0;
73 plane.
coefs[0] = M(0, 0);
74 plane.coefs[1] = M(0, 1);
75 plane.coefs[2] = M(0, 2);
76 plane.coefs[3] = M(0, 3);
78 const size_t N = allData.
cols();
79 out_inlierIndices.clear();
80 out_inlierIndices.reserve(100);
81 for (
size_t i = 0; i < N; i++)
83 const double d = plane.distance(
84 TPoint3D(allData(0, i), allData(1, i), allData(2, i)));
85 if (d < distanceThreshold) out_inlierIndices.push_back(i);
92 const CMatrixDouble& allData,
const std::vector<size_t>& useIndices)
106 const size_t N_plane = 300;
107 const size_t N_noise = 100;
109 const double PLANE_EQ[4] = {1, -1, 1, -2};
112 for (
size_t i = 0; i < N_plane; i++)
117 -(PLANE_EQ[3] + PLANE_EQ[0] * xx + PLANE_EQ[1] * yy) / PLANE_EQ[2];
123 for (
size_t i = 0; i < N_noise; i++)
133 std::vector<size_t> best_inliers;
134 const double DIST_THRESHOLD = 0.2;
137 const size_t TIMES = 100;
140 for (
size_t iters = 0; iters < TIMES; iters++)
145 best_inliers, best_model,
150 cout <<
"Computation time: " << tictac.
Tac() * 1000.0 / TIMES <<
" ms" 155 cout <<
"RANSAC finished: Best model: " << best_model << endl;
159 best_model(0, 0), best_model(0, 1), best_model(0, 2), best_model(0, 3));
170 points->setColor(0, 0, 1);
171 points->setPointSize(3);
172 points->enableColorFromZ();
175 std::vector<double> xs, ys, zs;
177 data.extractRow(0, xs);
178 data.extractRow(1, ys);
179 data.extractRow(2, zs);
180 points->setAllPoints(xs, ys, zs);
183 scene->insert(points);
189 plane.getAsPose3D(glPlanePose);
190 glPlane->setPose(glPlanePose);
192 scene->insert(glPlane);
194 win.get3DSceneAndLock() = scene;
195 win.unlockAccess3DScene();
211 catch (
const std::exception& e)
218 printf(
"Untyped exception!!");
A namespace of pseudo-random numbers generators of diferent distributions.
double Tac() noexcept
Stops the stopwatch.
static Ptr Create(Args &&... args)
bool ransac3Dplane_degenerate(const CMatrixDouble &allData, const std::vector< size_t > &useIndices)
Return "true" if the selected points are a degenerate (invalid) case.
void randomize(const uint32_t seed)
Initialize the PRNG from the given random seed.
A high-performance stopwatch, with typical resolution of nanoseconds.
static Ptr Create(Args &&... args)
#define ASSERT_(f)
Defines an assertion mechanism.
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.
void ransac3Dplane_fit(const CMatrixDouble &allData, const std::vector< size_t > &useIndices, vector< CMatrixDouble > &fitModels)
3D Plane, represented by its equation
TPoint3D_< double > TPoint3D
Lightweight 3D point.
mrpt::gui::CDisplayWindow3D::Ptr win
size_type rows() const
Number of rows in the matrix.
size_type cols() const
Number of columns in the matrix.
Classes for 2D/3D geometry representation, both of single values and probability density distribution...
This is the global namespace for all Mobile Robot Programming Toolkit (MRPT) libraries.
void ransac3Dplane_distance(const CMatrixDouble &allData, const vector< CMatrixDouble > &testModels, const double distanceThreshold, unsigned int &out_bestModelIndex, std::vector< size_t > &out_inlierIndices)
CSetOfObjects::Ptr CornerXYZ(float scale=1.0)
Returns three arrows representing a X,Y,Z 3D corner.
void setSize(size_t row, size_t col, bool zeroNewElements=false)
Changes the size of matrix, maintaining the previous contents.
Lightweight 3D pose (three spatial coordinates, plus three angular coordinates).
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...
static Ptr Create(Args &&... args)
Classes for creating GUI windows for 2D and 3D visualization.
A generic RANSAC implementation with models as matrices.
CRandomGenerator & getRandomGenerator()
A static instance of a CRandomGenerator class, for use in single-thread applications.
bool execute(const CMatrixDynamic< NUMTYPE > &data, const TRansacFitFunctor &fit_func, const TRansacDistanceFunctor &dist_func, const TRansacDegenerateFunctor °en_func, const double distanceThreshold, const unsigned int minimumSizeSamplesToFit, std::vector< size_t > &out_best_inliers, CMatrixDynamic< NUMTYPE > &out_best_model, const double prob_good_sample=0.999, const size_t maxIter=2000) const
An implementation of the RANSAC algorithm for robust fitting of models to data.
std::array< double, 4 > coefs
Plane coefficients, stored as an array: .
static Ptr Create(Args &&... args)
A graphical user interface (GUI) for efficiently rendering 3D scenes in real-time.
static struct FontData data