9 #ifndef CDisplayWindowPlots_H    10 #define CDisplayWindowPlots_H    36         void (*)(
int menuID, 
float cursor_x, 
float cursor_y, 
void* userParam);
    52     template <
typename VECTOR1, 
typename VECTOR2>
    54         const VECTOR1& 
x, 
const VECTOR2& 
y, 
const std::string& lineFormat,
    58         const size_t N1 = size_t(
x.size());
    59         for (
size_t i = 0; i < N1; i++) x1[i] = 
x[i];
    60         const size_t N2 = size_t(
y.size());
    61         for (
size_t i = 0; i < N2; i++) y1[i] = 
y[i];
    64     template <
typename VECTOR1>
    69         const size_t N = size_t(
y.size());
    71         for (
size_t i = 0; i < N; i++)
    84         unsigned int initialWidth = 350, 
unsigned int initialHeight = 300);
    88         const std::string& windowCaption, 
unsigned int initialWindowWidth = 400,
    89         unsigned int initialWindowHeight = 300);
   151     template <
typename T1, 
typename T2>
   153         const std::vector<T1>& 
x, 
const std::vector<T2>& 
y,
   160     template <
typename T1, 
typename Derived2>
   169     template <
typename Derived1, 
typename T2>
   178     template <
typename Derived1, 
typename Derived2>
   189     template <
typename T>
   191         const std::vector<T>& 
y,
   198     template <
typename Derived>
   209         float x_min, 
float x_max, 
float y_min, 
float y_max,
   210         bool aspectRatioFix = 
false);
   217     void axis_fit(
bool aspectRatioFix = 
false);
   238     template <
typename T>
   240         const T mean_x, 
const T mean_y,
   242         const float quantiles,
   245         bool showName = 
false);
   248     template <
typename T>
   250         const T mean_x, 
const T mean_y,
   252         const float quantiles,
   255         bool showName = 
false);
   267         const float& y_bottom, 
const float& x_width, 
const float& y_height,
 
Create a GUI window and display plots with MATLAB-like interfaces and commands. 
 
void enableMousePanZoom(bool enabled)
Enable/disable the feature of pan/zoom with the mouse (default=enabled) 
 
Column vector, like Eigen::MatrixX*, but automatically initialized to zeros since construction...
 
The wx dialog for gui::CDisplayWindowPlots. 
 
void setPos(int x, int y) override
Changes the position of the window on the screen. 
 
bool m_holdon
Whether hold_on is enabled. 
 
void axis(float x_min, float x_max, float y_min, float y_max, bool aspectRatioFix=false)
Set the view area according to the passed coordinated. 
 
void internal_plot(mrpt::math::CVectorFloat &x, mrpt::math::CVectorFloat &y, const std::string &lineFormat, const std::string &plotName)
 
void hold_off()
Disables keeping all the graphs (this is the default behavior). 
 
void internal_plot_interface(const VECTOR1 &y, const std::string &lineFormat, const std::string &plotName)
 
void axis_equal(bool enable=true)
Enable/disable the fixed X/Y aspect ratio fix feature (default=disabled). 
 
CDisplayWindowPlots(const std::string &windowCaption=std::string(), unsigned int initialWidth=350, unsigned int initialHeight=300)
Constructor. 
 
void plot(const std::vector< T1 > &x, const Eigen::MatrixBase< Derived2 > &y, const std::string &lineFormat=std::string("b-"), const std::string &plotName=std::string("plotXY"))
 
A numeric matrix of compile-time fixed size. 
 
uint32_t m_holdon_cnt
Counter for hold_on. 
 
virtual bool getLastMousePosition(int &x, int &y) const override
Gets the last x,y pixel coordinates of the mouse. 
 
void plot(const Eigen::MatrixBase< Derived1 > &x, const Eigen::MatrixBase< Derived2 > &y, const std::string &lineFormat=std::string("b-"), const std::string &plotName=std::string("plotXY"))
 
void(*)(int menuID, float cursor_x, float cursor_y, void *userParam) TCallbackMenu
Type for the callback function used in setMenuCallback. 
 
void plot(const std::vector< T > &y, const std::string &lineFormat=std::string("b-"), const std::string &plotName=std::string("plotXY"))
 
void addPopupMenuEntry(const std::string &label, int menuID)
Disables keeping all the graphs (this is the default behavior). 
 
void plot(const std::vector< T1 > &x, const std::vector< T2 > &y, const std::string &lineFormat=std::string("b-"), const std::string &plotName=std::string("plotXY"))
Adds a new layer with a 2D plot based on two vectors of X and Y points, using a MATLAB-like syntax...
 
GLsizei const GLchar ** string
 
void internal_plot_interface(const VECTOR1 &x, const VECTOR2 &y, const std::string &lineFormat, const std::string &plotName)
 
virtual ~CDisplayWindowPlots()
Destructor. 
 
void clear()
Remove all plot objects in the display. 
 
void axis_fit(bool aspectRatioFix=false)
Fix automatically the view area according to existing graphs. 
 
void hold_on()
Enables keeping all the graphs, instead of overwritting them. 
 
void clf()
Remove all plot objects in the display (clear and clf do exactly the same). 
 
void image(const mrpt::img::CImage &img, const float &x_left, const float &y_bottom, const float &x_width, const float &y_height, const std::string &plotName=std::string("image"))
Adds a bitmap image layer. 
 
void setWindowTitle(const std::string &str) override
Changes the window title text. 
 
static CDisplayWindowPlots::Ptr Create(const std::string &windowCaption, unsigned int initialWindowWidth=400, unsigned int initialWindowHeight=300)
Class factory returning a smart pointer. 
 
A matrix of dynamic size. 
 
virtual void setCursorCross(bool cursorIsCross) override
Set cursor style to default (cursorIsCross=false) or to a cross (cursorIsCross=true) ...
 
void plot(const Eigen::MatrixBase< Derived > &y, const std::string &lineFormat=std::string("b-"), const std::string &plotName=std::string("plotXY"))
 
typedef void(APIENTRYP PFNGLBLENDCOLORPROC)(GLclampf red
 
Classes for creating GUI windows for 2D and 3D visualization. 
 
GLenum GLsizei GLsizei height
 
unsigned __int32 uint32_t
 
void plot(const Eigen::MatrixBase< Derived1 > &x, const std::vector< T2 > &y, const std::string &lineFormat=std::string("b-"), const std::string &plotName=std::string("plotXY"))
 
bool m_holdon_just_disabled
 
The base class for GUI window classes. 
 
void setMenuCallback(TCallbackMenu userFunction, void *userParam=nullptr)
Must be called to have a callback when the user selects one of the user-defined entries in the popup ...
 
void resize(unsigned int width, unsigned int height) override
Resizes the window, stretching the image to fit into the display area. 
 
void plotEllipse(const T mean_x, const T mean_y, const mrpt::math::CMatrixTemplateNumeric< T > &cov22, const float quantiles, const std::string &lineFormat=std::string("b-"), const std::string &plotName=std::string("plotEllipse"), bool showName=false)
Plots a 2D ellipse given its mean, covariance matrix, and Each call to this function creates a new pl...
 
A class for storing images as grayscale or RGB bitmaps.