34#ifndef VP_PLOT_CURVE_H
35#define VP_PLOT_CURVE_H
37#include <visp3/core/vpConfig.h>
39#ifndef DOXYGEN_SHOULD_SKIP_THIS
41#include <visp3/core/vpColor.h>
42#include <visp3/core/vpImage.h>
44#include <visp3/core/vpHomogeneousMatrix.h>
45#include <visp3/core/vpRect.h>
47#include <visp3/core/vpCameraParameters.h>
48#include <visp3/core/vpPoint.h>
52#if defined(VISP_HAVE_DISPLAY)
60 typedef enum { point, line, dashed_line, marker } vpCurveStyle;
62 vpCurveStyle curveStyle;
65 vpImagePoint lastPoint;
66 std::list<double> pointListx;
67 std::list<double> pointListy;
68 std::list<double> pointListz;
77 virtual ~vpPlotCurve();
78 void plotPoint(
const vpImage<unsigned char> &I,
const vpImagePoint &iP,
double x,
double y);
79 void plotList(
const vpImage<unsigned char> &I,
double xorg,
double yorg,
double zoomx,
double zoomy);