20 void myOnMenu(
int menuID,
float x,
float y,
void* param)
22 cout <<
"Menu: " << menuID << endl <<
" x=" << x <<
" y=" << y << endl;
32 win.enableMousePanZoom(
true);
33 win.addPopupMenuEntry(
"Mark this point...", 1);
38 for (
double x = 0; x < 5; x += 0.01f)
45 win.plot(X, Y,
"r-3");
46 win.axis_equal(
false);
53 win2.enableMousePanZoom(
true);
59 ellipse_cov(0, 0) = 1.0f;
60 ellipse_cov(1, 1) = 1.0f;
61 ellipse_cov(0, 1) = ellipse_cov(1, 0) = 0.5f;
63 win2.plotEllipse(1.0f, 2.0f, ellipse_cov, 3,
"k-2");
64 win2.plotEllipse(mean_x, mean_y, ellipse_cov, 3,
"b-2",
"my_ellipse");
66 win2.axis(-10, 10, -10, 10);
67 win2.axis_equal(
true);
71 cout <<
"Press any key to exit..." << endl;
75 ellipse_cov(0, 1) = ellipse_cov(1, 0) = -0.9f;
77 !
win.keyHit() && !win2.keyHit())
82 win2.plotEllipse(mean_x, mean_y, ellipse_cov, 3,
"b-2",
"my_ellipse");
84 std::this_thread::sleep_for(50ms);
98 catch (
const std::exception& e)
105 printf(
"Untyped exception!!");
Create a GUI window and display plots with MATLAB-like interfaces and commands.
void myOnMenu(int menuID, float x, float y, void *param)
void push_back(const T &val)
This base provides a set of functions for maths stuff.
mrpt::gui::CDisplayWindow3D::Ptr win
This is the global namespace for all Mobile Robot Programming Toolkit (MRPT) libraries.
bool kbhit() noexcept
An OS-independent version of kbhit, which returns true if a key has been pushed.
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.
double normalPDF(double x, double mu, double std)
Evaluates the univariate normal (Gaussian) distribution at a given point "x".
This template class provides the basic functionality for a general 2D any-size, resizable container o...