38 #ifndef DOXYGEN_SHOULD_SKIP_THIS
43 #include <visp3/core/vpColor.h>
44 #include <visp3/core/vpImage.h>
46 #include <visp3/gui/vpPlotCurve.h>
47 #include <visp3/core/vpMouseButton.h>
49 #include <visp3/core/vpHomogeneousMatrix.h>
50 #include <visp3/core/vpRect.h>
52 #include <visp3/core/vpCameraParameters.h>
53 #include <visp3/core/vpPoint.h>
55 #if defined(VISP_HAVE_DISPLAY)
76 unsigned int curveNbr;
77 vpPlotCurve* curveList;
78 bool scaleInitialized;
140 unsigned int gridThickness;
170 void computeGraphParameters();
171 void computeGraphParameters3D();
173 void initGraph (
unsigned int nbCurve);
174 void initSize (
vpImagePoint topLeft,
unsigned int width,
unsigned int height,
unsigned int margei,
unsigned int margej);
175 void initScale(
vpImage<unsigned char> &I,
const double xmin,
const double xmax,
const int nbDivx,
const double ymin,
const double ymax,
const int nbDivy,
const bool gx,
const bool gy);
176 void initScale(
vpImage<unsigned char> &I,
const double xmin,
const double xmax,
const int nbDivx,
const double ymin,
const double ymax,
const int nbDivy,
const double zmin,
const double zmax,
const int nbDivz,
const bool gx,
const bool gy);
196 void rescalex(
unsigned int side,
double extremity);
197 void rescaley(
unsigned int side,
double extremity);
198 void rescalez(
unsigned int side,
double extremity);
200 void resetPointList(
const unsigned int curveNum);
202 void setCurveColor(
const unsigned int curveNum,
const vpColor color);
203 void setCurveThickness(
const unsigned int curveNum,
const unsigned int thickness);
204 void setGridThickness (
const unsigned int thickness) {
205 this->gridThickness = thickness;
207 void setLegend (
const unsigned int curveNum,
const std::string &legend);
208 void setTitle (
const std::string &title);
209 void setUnitX (
const std::string &unitx);
210 void setUnitY (
const std::string &unity);
211 void setUnitZ (
const std::string &unitz);
Implementation of an homogeneous matrix and operations on such kind of matrices.
Class to define colors available for display functionnalities.
Generic class defining intrinsic camera parameters.
Defines a rectangle in the plane.
Class that defines a 2D point in an image. This class is useful for image processing and stores only ...