35 const std::vector<TPoint3D>& allData;
37 Fit3DPlane(
const std::vector<TPoint3D>& _allData) : allData(_allData) {}
38 size_t getSampleCount(
void)
const {
return allData.size(); }
39 bool fitModel(
const std::vector<size_t>& useIndices,
TPlane3D& model)
const 41 ASSERT_(useIndices.size() == 3);
48 model =
TPlane(p1, p2, p3);
58 double testSample(
size_t index,
const TPlane3D& model)
const 60 return model.
distance(allData[index]);
73 const size_t N_plane = 300;
74 const size_t N_noise = 100;
76 const double PLANE_EQ[4] = {1, -1, 1, -2};
78 std::vector<TPoint3D>
data;
79 for (
size_t i = 0; i < N_plane; i++)
84 -(PLANE_EQ[3] + PLANE_EQ[0] * xx + PLANE_EQ[1] * yy) / PLANE_EQ[2];
88 for (
size_t i = 0; i < N_noise; i++)
100 std::vector<size_t> best_inliers;
101 const double DIST_THRESHOLD = 0.2;
104 const size_t TIMES = 100;
107 for (
size_t iters = 0; iters < TIMES; iters++)
112 fit, 3, DIST_THRESHOLD, 10, 100, best_model, best_inliers);
114 cout <<
"Computation time (genetic): " << tictac.
Tac() * 1000.0 / TIMES
117 for (
size_t iters = 0; iters < TIMES; iters++)
122 fit, 3, DIST_THRESHOLD, best_model, best_inliers);
124 cout <<
"Computation time (ransac): " << tictac.
Tac() * 1000.0 / TIMES
141 points->setColor(0.0f, 0.0f, 1.0f);
142 points->setPointSize(3);
143 points->enableColorFromZ();
144 points->setAllPoints(
data);
146 scene->insert(points);
153 glPlane->setPose(glPlanePose);
155 scene->insert(glPlane);
157 win.get3DSceneAndLock() = scene;
158 win.unlockAccess3DScene();
174 catch (
const std::exception& e)
181 printf(
"Untyped exception!!");
A namespace of pseudo-random numbers generators of diferent distributions.
double Tac() noexcept
Stops the stopwatch.
static Ptr Create(Args &&... args)
Model search implementations: RANSAC and genetic algorithm.
void randomize(const uint32_t seed)
Initialize the PRNG from the given random seed.
A high-performance stopwatch, with typical resolution of nanoseconds.
bool ransacSingleModel(const TModelFit &p_state, size_t p_kernelSize, const typename TModelFit::Real &p_fitnessThreshold, typename TModelFit::Model &p_bestModel, std::vector< size_t > &p_inliers)
Run the ransac algorithm searching for a single model.
static Ptr Create(Args &&... args)
#define ASSERT_(f)
Defines an assertion mechanism.
void getAsPose3D(mrpt::math::TPose3D &outPose) const
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.
3D Plane, represented by its equation
TPoint3D_< double > TPoint3D
Lightweight 3D point.
mrpt::gui::CDisplayWindow3D::Ptr win
double distance(const TPoint3D &point) const
Distance to 3D point.
Classes for 2D/3D geometry representation, both of single values and probability density distribution...
bool geneticSingleModel(const TModelFit &p_state, size_t p_kernelSize, const typename TModelFit::Real &p_fitnessThreshold, size_t p_populationSize, size_t p_maxIteration, typename TModelFit::Model &p_bestModel, std::vector< size_t > &p_inliers)
Run a generic programming version of ransac searching for a single model.
This is the global namespace for all Mobile Robot Programming Toolkit (MRPT) libraries.
CSetOfObjects::Ptr CornerXYZ(float scale=1.0)
Returns three arrows representing a X,Y,Z 3D corner.
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.
CRandomGenerator & getRandomGenerator()
A static instance of a CRandomGenerator class, for use in single-thread applications.
static Ptr Create(Args &&... args)
A graphical user interface (GUI) for efficiently rendering 3D scenes in real-time.
static struct FontData data