MRPT  2.0.1
test.cpp
Go to the documentation of this file.
1 /* +------------------------------------------------------------------------+
2  | Mobile Robot Programming Toolkit (MRPT) |
3  | https://www.mrpt.org/ |
4  | |
5  | Copyright (c) 2005-2020, Individual contributors, see AUTHORS file |
6  | See: https://www.mrpt.org/Authors - All rights reserved. |
7  | Released under BSD License. See: https://www.mrpt.org/License |
8  +------------------------------------------------------------------------+ */
9 
12 #include <mrpt/math/utils.h>
13 #include <mrpt/poses/CPose3D.h>
15 #include <mrpt/random.h>
16 #include <mrpt/system/datetime.h>
17 #include <mrpt/system/os.h>
18 #include <iostream>
19 #include <mrpt/math/interp_fit.hpp>
20 
21 using namespace mrpt::gui;
22 using namespace mrpt::random;
23 using namespace mrpt::math;
24 using namespace std;
25 
26 // ------------------------------------------------------
27 // TestCapture
28 // ------------------------------------------------------
30 {
32  mrpt::Clock::time_point ts = iniTs;
33  mrpt::Clock::time_point ots = iniTs;
34  mrpt::poses::CPose3D pose(0, 0, 0, 0, 0, 0);
36  std::vector<mrpt::poses::CPose3D> p;
37  mrpt::poses::CPose3D outPose(0, 0, 0, 0, 0, 0);
38  bool valid;
39 
40  FILE* f = mrpt::system::os::fopen("interpolation.txt", "wt");
41 
42  // Set the maximum value of the interval time for considering interpolation
43  poseInt.setMaxTimeInterpolation(std::chrono::seconds(1));
44 
45  poseInt.insert(ts, pose); // First point
46 
47  ts += std::chrono::seconds(1);
48  pose.setFromValues(1, 1, 0, 0, 1, 0);
49  poseInt.insert(ts, pose); // Second point
50 
51  ts += std::chrono::seconds(1);
52  pose.setFromValues(2, 2.5, 1, 0, 1.3, 0);
53  poseInt.insert(ts, pose); // Third point
54 
55  ts += std::chrono::seconds(1);
56  pose.setFromValues(3, 1.7, 2, 0, 1.57, 0);
57  poseInt.insert(ts, pose); // Fourth point
58 
59  unsigned int i;
60  for (i = 0, ots = iniTs; ots <= iniTs + std::chrono::seconds(3);
61  ots += std::chrono::milliseconds(100), i++)
62  {
63  poseInt.interpolate(ots, outPose, valid);
64  p.push_back(outPose);
66  f, "%d %f %f %f %f %f %f\n", i, outPose.x(), outPose.y(),
67  outPose.z(), outPose.yaw(), outPose.pitch(), outPose.roll());
68  }
69 
71 
72 } // end TestCPose3DInterpolation
73 
75 {
76  FILE* f = mrpt::system::os::fopen("out2", "wt");
77 
78  CVectorDouble x, y;
79  double t;
80  x.resize(4);
81  y.resize(4);
82 
83  // x[0] = 0.0; x[1] = 1.0; x[2] = 2.0; x[3] = 4.0;
84  // y[0] = 0.0; y[1] = 1.0; y[2] = 1.8; y[3] = 1.6;
85 
86  x[0] = -1.5;
87  x[1] = -0.5;
88  x[2] = 0.5;
89  x[3] = 1.5;
90  y[0] = 3.14;
91  y[1] = -3.10;
92  y[2] = -3.05;
93  y[3] = 3.10;
94 
95  CVectorDouble ts, ys_interp;
96 
97  for (t = x[1]; t <= x[2]; t += 0.01)
98  {
99  double w = mrpt::math::spline(t, x, y); // wrap no
100  // double w = mrpt::math::spline(t, x, y, true); // wrap yes
101  ts.push_back(t);
102  ys_interp.push_back(w);
103  mrpt::system::os::fprintf(f, "%f %f\n", t, w);
104  }
105 
107  cout << "Done" << endl;
108 
109 #if MRPT_HAS_WXWIDGETS
110  CDisplayWindowPlots figure("Interpolation results");
111  figure.plot(x, y, "r.4", "true points");
112  figure.plot(ts, ys_interp, "b", "interp");
113 
114  figure.axis_equal();
115  figure.axis_fit();
116 
117  figure.waitForKey();
118 #endif
119 }
120 
122 {
123  const size_t N = 15;
124  CVectorDouble data_x, data_y(N);
125 
126  // Create random data:
127  mrpt::math::linspace(-20.0, 20.0, N, data_x);
128  getRandomGenerator().drawGaussian1DVector(data_y, 2.0, 1.0);
129 
130  // Create interpolator
131  mrpt::math::CSplineInterpolator1D interp(data_x, data_y);
132 
133  // Generate sequence of where to interpolate:
134  CVectorDouble xs;
135  mrpt::math::linspace(-20.0, 20.0, 500, xs);
136 
137  CVectorDouble ys;
138  bool valid = interp.queryVector(xs, ys);
139  ASSERT_(valid);
140 
141 #if MRPT_HAS_WXWIDGETS
142  CDisplayWindowPlots figure("Interpolation results");
143  figure.plot(data_x, data_y, "r.6", "true points");
144  figure.plot(xs, ys, "b", "interp");
145 
146  figure.axis_equal();
147  figure.axis_fit();
148 
149  figure.waitForKey();
150 #endif
151 }
152 
153 int main(int argc, char** argv)
154 {
155  try
156  {
158  // TestSplineInterpolation();
159  // TestCPose3DInterpolation();
160 
161  return 0;
162  }
163  catch (const std::exception& e)
164  {
165  std::cerr << "MRPT error: " << mrpt::exception_to_str(e) << std::endl;
166  return -1;
167  }
168  catch (...)
169  {
170  printf("Another exception!!");
171  return -1;
172  }
173 }
A namespace of pseudo-random numbers generators of diferent distributions.
std::chrono::time_point< Clock > time_point
Definition: Clock.h:25
Create a GUI window and display plots with MATLAB-like interfaces and commands.
int void fclose(FILE *f)
An OS-independent version of fclose.
Definition: os.cpp:275
void drawGaussian1DVector(VEC &v, const double mean=0, const double std=1)
Fills the given vector with independent, 1D-normally distributed samples.
STL namespace.
static time_point now() noexcept
Returns the current time using the currently selected Clock source.
Definition: Clock.cpp:94
void push_back(const T &val)
void TestSplineInterpolation()
#define ASSERT_(f)
Defines an assertion mechanism.
Definition: exceptions.h:120
A (persistent) sequence of (x,y) coordinates, allowing queries of intermediate points through spline ...
This base provides a set of functions for maths stuff.
void linspace(T first, T last, size_t count, VECTOR &out_vector)
Generates an equidistant sequence of numbers given the first one, the last one and the desired number...
int fprintf(FILE *fil, const char *format,...) noexcept MRPT_printf_format_check(2
An OS-independent version of fprintf.
Definition: os.cpp:408
void setMaxTimeInterpolation(const mrpt::Clock::duration &time)
Set value of the maximum time to consider interpolation.
pose_t & interpolate(const mrpt::Clock::time_point &t, pose_t &out_interp, bool &out_valid_interp) const
Returns the pose at a given time, or interpolates using splines if there is not an exact match...
const char * argv[]
A class used to store a 3D pose (a 3D translation + a rotation in 3D).
Definition: CPose3D.h:85
NUMTYPE spline(const NUMTYPE t, const VECTORLIKE &x, const VECTORLIKE &y, bool wrap2pi=false)
Interpolates the value of a function in a point "t" given 4 SORTED points where "t" is between the tw...
Definition: interp_fit.hpp:34
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...
Definition: exceptions.cpp:59
void TestSplineInterpolationVector()
This class stores a time-stamped trajectory in SE(3) (CPose3D poses).
FILE * fopen(const char *fileName, const char *mode) noexcept
An OS-independent version of fopen.
Definition: os.cpp:257
Classes for creating GUI windows for 2D and 3D visualization.
Definition: about_box.h:14
const int argc
void insert(const mrpt::Clock::time_point &t, const pose_t &p)
Inserts a new pose in the sequence.
void resize(std::size_t N, bool zeroNewElements=false)
CRandomGenerator & getRandomGenerator()
A static instance of a CRandomGenerator class, for use in single-thread applications.
void TestCPose3DInterpolation()



Page generated by Doxygen 1.8.14 for MRPT 2.0.1 Git: 0fef1a6d7 Fri Apr 3 23:00:21 2020 +0200 at vie abr 3 23:20:28 CEST 2020