39 #include <visp3/core/vpDisplay.h> 41 #include "vpDisplay_impl.h" 62 const vpColor &color,
unsigned int w,
unsigned int h,
unsigned int thickness)
64 vp_display_display_arrow(I, ip1, ip2, color, w, h, thickness);
78 unsigned int w,
unsigned int h,
unsigned int thickness)
80 vp_display_display_arrow(I, i1, j1, i2, j2, color, w, h, thickness);
99 vp_display_display_camera(I, cMo, cam, size, color, thickness);
118 vp_display_display_char_string(I, ip,
string, color);
137 vp_display_display_char_string(I, i, j,
string, color);
153 const vpColor &color,
bool fill,
unsigned int thickness)
155 vp_display_display_circle(I, center, radius, color, fill, thickness);
171 bool fill,
unsigned int thickness)
173 vp_display_display_circle(I, i, j, radius, color, fill, thickness);
185 const vpColor &color,
unsigned int thickness)
187 vp_display_display_cross(I, ip, size, color, thickness);
199 unsigned int thickness)
201 vp_display_display_cross(I, i, j, size, color, thickness);
212 const vpColor &color,
unsigned int thickness)
214 vp_display_display_dot_line(I, ip1, ip2, color, thickness);
226 unsigned int thickness)
228 vp_display_display_dot_line(I, i1, j1, i2, j2, color, thickness);
241 bool closeTheShape,
const vpColor &color,
unsigned int thickness)
246 for (
size_t i = 0; i < ips.size() - 1; i++)
247 vp_display_display_dot_line(I, ips[i], ips[i + 1], color, thickness);
250 vp_display_display_dot_line(I, ips.front(), ips.back(), color, thickness);
263 bool closeTheShape,
const vpColor &color,
unsigned int thickness)
268 std::list<vpImagePoint>::const_iterator it = ips.begin();
271 for (; it != ips.end(); ++it) {
273 vp_display_display_dot_line(I, ip_prev, *it, color, thickness);
279 vp_display_display_dot_line(I, ips.front(), ips.back(), color, thickness);
320 const double &coef2,
const double &coef3,
bool use_normalized_centered_moments,
321 const vpColor &color,
unsigned int thickness,
bool display_center,
bool display_arc)
324 thickness, display_center, display_arc);
367 const double &coef2,
const double &coef3,
const double &smallalpha,
const double &highalpha,
368 bool use_normalized_centered_moments,
const vpColor &color,
unsigned int thickness,
369 bool display_center,
bool display_arc)
371 vp_display_display_ellipse(I, center, coef1, coef2, coef3, smallalpha, highalpha, use_normalized_centered_moments, color,
372 thickness, display_center, display_arc);
394 vp_display_display_frame(I, cMo, cam, size, color, thickness, offset);
407 const vpColor &color,
unsigned int thickness,
bool segment)
409 displayLine(I, static_cast<int>(ip1.
get_i()), static_cast<int>(ip1.
get_j()), static_cast<int>(ip2.
get_i()), static_cast<int>(ip2.
get_j()), color, thickness, segment);
423 unsigned int thickness,
bool segment)
426 vp_display_display_line(I, i1, j1, i2, j2, color, thickness);
430 double delta_j =
static_cast<double>(j2) - static_cast<double>(j1);
431 double delta_i =
static_cast<double>(i2) - static_cast<double>(i1);
433 if (std::fabs(delta_i) <= std::numeric_limits<double>::epsilon()) {
434 vp_display_display_line(I, i1, 0, i1, (I.
getWidth()-1), color, thickness);
437 else if (std::fabs(delta_j) <= std::numeric_limits<double>::epsilon()) {
438 vp_display_display_line(I, 0, j1, (I.
getHeight()-1), j1, color, thickness);
441 double a = delta_i / delta_j;
442 double b =
static_cast<double>(i1) - a * static_cast<double>(j1);
443 std::vector<vpImagePoint> vip;
447 vip.push_back(ip_left);
452 vip.push_back(ip_right);
454 if (vip.size() == 2) {
455 vp_display_display_line(I, vip[0], vip[1], color, thickness);
461 vip.push_back(ip_top);
463 if (vip.size() == 2) {
464 vp_display_display_line(I, vip[0], vip[1], color, thickness);
470 vip.push_back(ip_bottom);
472 if (vip.size() == 2) {
473 vp_display_display_line(I, vip[0], vip[1], color, thickness);
489 bool closeTheShape,
const vpColor &color,
unsigned int thickness)
494 for (
size_t i = 0; i < ips.size() - 1; i++)
495 vp_display_display_line(I, ips[i], ips[i + 1], color, thickness);
498 vp_display_display_line(I, ips.front(), ips.back(), color, thickness);
510 bool closeTheShape,
const vpColor &color,
unsigned int thickness)
515 std::list<vpImagePoint>::const_iterator it = ips.begin();
518 for (; it != ips.end(); ++it) {
520 vp_display_display_line(I, ip_prev, *it, color, thickness);
526 vp_display_display_line(I, ips.front(), ips.back(), color, thickness);
538 unsigned int thickness)
540 vp_display_display_point(I, ip, color, thickness);
551 unsigned int thickness)
553 vp_display_display_point(I, i, j, color, thickness);
565 const vpColor &color,
unsigned int thickness,
bool closed)
567 vp_display_display_polygon(I, vip, color, thickness, closed);
587 unsigned int height,
const vpColor &color,
bool fill,
unsigned int thickness)
589 vp_display_display_rectangle(I, topLeft, width, height, color, fill, thickness);
607 const vpColor &color,
bool fill,
unsigned int thickness)
609 vp_display_display_rectangle(I, i, j, width, height, color, fill, thickness);
628 bool fill,
unsigned int thickness)
630 vp_display_display_rectangle(I, rectangle, color, fill, thickness);
647 unsigned int width,
unsigned int height,
const vpColor &color,
unsigned int thickness)
649 vp_display_display_rectangle(I, center, angle, width, height, color, thickness);
670 unsigned int thickness)
672 vp_display_display_rectangle(I, topLeft, bottomRight, color, fill, thickness);
689 unsigned int width,
unsigned int height,
const vpColor &color,
unsigned int thickness)
691 vp_display_display_rectangle(I, i, j, angle, width, height, color, thickness);
709 vp_display_display_text(I, ip, s, color);
726 vp_display_display_text(I, i, j, s, color);
829 return vp_display_get_click(I, ip, blocking);
855 return vp_display_get_click(I, ip, button, blocking);
903 return vp_display_get_click_up(I, ip, button, blocking);
1013 return vp_display_get_keyboard_event(I, blocking);
1104 return vp_display_get_keyboard_event(I, key, blocking);
1195 return vp_display_get_keyboard_event(I, key, blocking);
1209 return vp_display_get_pointer_motion_event(I, ip);
1223 return vp_display_get_pointer_position(I, ip);
1237 vp_display_set_background(I, color);
1255 vp_display_set_font(I, fontname);
1267 vp_display_set_title(I, windowtitle);
1282 vp_display_set_window_position(I, winx, winy);
1296 return vp_display_get_down_scaling_factor(I);
static void displayCamera(const vpImage< unsigned char > &I, const vpHomogeneousMatrix &cMo, const vpCameraParameters &cam, double size, const vpColor &color, unsigned int thickness)
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.
Class to define RGB 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 displayPolygon(const vpImage< unsigned char > &I, const std::vector< vpImagePoint > &vip, const vpColor &color, unsigned int thickness=1, bool closed=true)
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 double distance(const vpImagePoint &iP1, const vpImagePoint &iP2)
static void display(const vpImage< unsigned char > &I)
Generic class defining intrinsic camera parameters.
static void displayEllipse(const vpImage< unsigned char > &I, const vpImagePoint ¢er, const double &coef1, const double &coef2, const double &coef3, bool use_normalized_centered_moments, const vpColor &color, unsigned int thickness=1, bool display_center=false, bool display_arc=false)
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 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)
unsigned int getHeight() const
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 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)
unsigned int getWidth() const
static void displayLine(const vpImage< unsigned char > &I, const vpImagePoint &ip1, const vpImagePoint &ip2, const vpColor &color, unsigned int thickness=1, bool segment=true)
static void displayDotLine(const vpImage< unsigned char > &I, const vpImagePoint &ip1, const vpImagePoint &ip2, const vpColor &color, unsigned int thickness=1)