1 #include <visp3/core/vpDisplay.h> 3 #include "vpDisplay_impl.h" 24 const vpColor &color,
unsigned int w,
unsigned int h,
unsigned int thickness)
26 vp_display_display_arrow(I, ip1, ip2, color, w, h, thickness);
40 unsigned int w,
unsigned int h,
unsigned int thickness)
42 vp_display_display_arrow(I, i1, j1, i2, j2, color, w, h, thickness);
59 double size,
const vpColor &color,
unsigned int thickness)
61 vp_display_display_camera(I, cMo, cam, size, color, thickness);
80 vp_display_display_char_string(I, ip,
string, color);
98 vp_display_display_char_string(I, i, j,
string, color);
112 const vpColor &color,
bool fill,
unsigned int thickness)
114 vp_display_display_circle(I, center, radius, color, fill, thickness);
128 bool fill,
unsigned int thickness)
130 vp_display_display_circle(I, i, j, radius, color, fill, thickness);
142 unsigned int thickness)
144 vp_display_display_cross(I, ip, size, color, thickness);
156 unsigned int thickness)
158 vp_display_display_cross(I, i, j, size, color, thickness);
169 const vpColor &color,
unsigned int thickness)
171 vp_display_display_dot_line(I, ip1, ip2, color, thickness);
183 unsigned int thickness)
185 vp_display_display_dot_line(I, i1, j1, i2, j2, color, thickness);
197 const vpColor &color,
unsigned int thickness)
202 for (
size_t i = 0; i < ips.size() - 1; i++)
203 vp_display_display_dot_line(I, ips[i], ips[i + 1], color, thickness);
206 vp_display_display_dot_line(I, ips.front(), ips.back(), color, thickness);
258 const double &coef2,
const double &coef3,
bool use_centered_moments,
259 const vpColor &color,
unsigned int thickness)
319 const double &coef2,
const double &coef3,
const double &theta1,
const double &theta2,
320 bool use_centered_moments,
const vpColor &color,
unsigned int thickness)
322 vp_display_display_ellipse(I, center, coef1, coef2, coef3, theta1, theta2, use_centered_moments, color, thickness);
343 vp_display_display_frame(I, cMo, cam, size, color, thickness, offset);
354 const vpColor &color,
unsigned int thickness)
356 vp_display_display_line(I, ip1, ip2, color, thickness);
368 unsigned int thickness)
370 vp_display_display_line(I, i1, j1, i2, j2, color, thickness);
381 const vpColor &color,
unsigned int thickness)
386 for (
size_t i = 0; i < ips.size() - 1; i++)
387 vp_display_display_line(I, ips[i], ips[i + 1], color, thickness);
390 vp_display_display_line(I, ips.front(), ips.back(), color, thickness);
401 unsigned int thickness)
403 vp_display_display_point(I, ip, color, thickness);
415 vp_display_display_point(I, i, j, color, thickness);
426 unsigned int thickness)
428 vp_display_display_polygon(I, vip, color, thickness);
446 unsigned int height,
const vpColor &color,
bool fill,
unsigned int thickness)
448 vp_display_display_rectangle(I, topLeft, width, height, color, fill, thickness);
466 const vpColor &color,
bool fill,
unsigned int thickness)
468 vp_display_display_rectangle(I, i, j, width, height, color, fill, thickness);
485 unsigned int thickness)
487 vp_display_display_rectangle(I, rectangle, color, fill, thickness);
504 unsigned int height,
const vpColor &color,
unsigned int thickness)
506 vp_display_display_rectangle(I, center, angle, width, height, color, thickness);
524 const vpColor &color,
bool fill,
unsigned int thickness)
526 vp_display_display_rectangle(I, topLeft, bottomRight, color, fill, thickness);
543 unsigned int width,
unsigned int height,
const vpColor &color,
unsigned int thickness)
545 vp_display_display_rectangle(I, i, j, angle, width, height, color, thickness);
563 vp_display_display_text(I, ip, s, color);
580 vp_display_display_text(I, i, j, s, color);
683 return vp_display_get_click(I, ip, blocking);
709 return vp_display_get_click(I, ip, button, blocking);
757 return vp_display_get_click_up(I, ip, button, blocking);
866 return vp_display_get_keyboard_event(I, blocking);
957 return vp_display_get_keyboard_event(I, key, blocking);
1048 return vp_display_get_keyboard_event(I, key, blocking);
1062 return vp_display_get_pointer_motion_event(I, ip);
1076 return vp_display_get_pointer_position(I, ip);
1114 vp_display_set_title(I, windowtitle);
1129 vp_display_set_window_position(I, winx, winy);
static void displayCamera(const vpImage< unsigned char > &I, const vpHomogeneousMatrix &cMo, const vpCameraParameters &cam, double size, const vpColor &color, unsigned int thickness)
static void displayEllipse(const vpImage< unsigned char > &I, const vpImagePoint ¢er, const double &coef1, const double &coef2, const double &coef3, bool use_centered_moments, const vpColor &color, unsigned int thickness=1)
static bool getPointerPosition(const vpImage< unsigned char > &I, vpImagePoint &ip)
static bool getClick(const vpImage< unsigned char > &I, bool blocking=true)
static void close(vpImage< unsigned char > &I)
static bool getPointerMotionEvent(const vpImage< unsigned char > &I, vpImagePoint &ip)
Implementation of an homogeneous matrix and operations on such kind of matrices.
static void displayPolygon(const vpImage< unsigned char > &I, const std::vector< vpImagePoint > &vip, const vpColor &color, unsigned int thickness=1)
Class to define colors available for display functionnalities.
static void displayText(const vpImage< unsigned char > &I, const vpImagePoint &ip, const std::string &s, const vpColor &color)
static bool getClickUp(const vpImage< unsigned char > &I, vpImagePoint &ip, vpMouseButton::vpMouseButtonType &button, bool blocking=true)
static void displayPoint(const vpImage< unsigned char > &I, const vpImagePoint &ip, const vpColor &color, unsigned int thickness=1)
static void flush(const vpImage< unsigned char > &I)
static void setFont(const vpImage< unsigned char > &I, const std::string &font)
static void displayArrow(const vpImage< unsigned char > &I, const vpImagePoint &ip1, const vpImagePoint &ip2, const vpColor &color=vpColor::white, unsigned int w=4, unsigned int h=2, unsigned int thickness=1)
static void display(const vpImage< unsigned char > &I)
Generic class defining intrinsic camera parameters.
static void displayRectangle(const vpImage< unsigned char > &I, const vpImagePoint &topLeft, unsigned int width, unsigned int height, const vpColor &color, bool fill=false, unsigned int thickness=1)
static double rad(double deg)
static void displayCircle(const vpImage< unsigned char > &I, const vpImagePoint ¢er, unsigned int radius, const vpColor &color, bool fill=false, unsigned int thickness=1)
static void displayCross(const vpImage< unsigned char > &I, const vpImagePoint &ip, unsigned int size, const vpColor &color, unsigned int thickness=1)
static void setWindowPosition(const vpImage< unsigned char > &I, int winx, int winy)
static void displayFrame(const vpImage< unsigned char > &I, const vpHomogeneousMatrix &cMo, const vpCameraParameters &cam, double size, const vpColor &color=vpColor::none, unsigned int thickness=1, const vpImagePoint &offset=vpImagePoint(0, 0))
unsigned int getDownScalingFactor()
static void setBackground(const vpImage< unsigned char > &I, const vpColor &color)
Defines a rectangle in the plane.
static void flushROI(const vpImage< unsigned char > &I, const vpRect &roi)
static void displayROI(const vpImage< unsigned char > &I, const vpRect &roi)
Class that defines a 2D point in an image. This class is useful for image processing and stores only ...
static void displayLine(const vpImage< unsigned char > &I, const vpImagePoint &ip1, const vpImagePoint &ip2, const vpColor &color, unsigned int thickness=1)
static bool getKeyboardEvent(const vpImage< unsigned char > &I, bool blocking=true)
static void displayCharString(const vpImage< unsigned char > &I, const vpImagePoint &ip, const char *string, const vpColor &color)
static void setTitle(const vpImage< unsigned char > &I, const std::string &windowtitle)
static void displayDotLine(const vpImage< unsigned char > &I, const vpImagePoint &ip1, const vpImagePoint &ip2, const vpColor &color, unsigned int thickness=1)