Visual Servoing Platform  version 3.3.0 under development (2020-02-17)
vpDisplay_rgba.cpp
1 /****************************************************************************
2  *
3  * ViSP, open source Visual Servoing Platform software.
4  * Copyright (C) 2005 - 2019 by Inria. All rights reserved.
5  *
6  * This software is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  * See the file LICENSE.txt at the root directory of this source
11  * distribution for additional information about the GNU GPL.
12  *
13  * For using ViSP with software that can not be combined with the GNU
14  * GPL, please contact Inria about acquiring a ViSP Professional
15  * Edition License.
16  *
17  * See http://visp.inria.fr for more information.
18  *
19  * This software was developed at:
20  * Inria Rennes - Bretagne Atlantique
21  * Campus Universitaire de Beaulieu
22  * 35042 Rennes Cedex
23  * France
24  *
25  * If you have questions regarding the use of this file, please contact
26  * Inria at visp@inria.fr
27  *
28  * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
29  * WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
30  *
31  * Description:
32  * Display implementation.
33  *
34  * Authors:
35  * Fabien Spindler
36  *
37  *****************************************************************************/
38 
39 #include <visp3/core/vpDisplay.h>
40 
41 #include "vpDisplay_impl.h"
42 
43 //************************************************************************
44 // Modifications done in this file should be reported in all vpDisplay_*.cpp
45 // files that implement other types (unsigned char, vpRGB, vpRGBa)
46 //************************************************************************
47 
51 void vpDisplay::close(vpImage<vpRGBa> &I) { vp_display_close(I); }
52 
61 void vpDisplay::displayArrow(const vpImage<vpRGBa> &I, const vpImagePoint &ip1, const vpImagePoint &ip2,
62  const vpColor &color, unsigned int w, unsigned int h, unsigned int thickness)
63 {
64  vp_display_display_arrow(I, ip1, ip2, color, w, h, thickness);
65 }
66 
77 void vpDisplay::displayArrow(const vpImage<vpRGBa> &I, int i1, int j1, int i2, int j2, const vpColor &color,
78  unsigned int w, unsigned int h, unsigned int thickness)
79 {
80  vp_display_display_arrow(I, i1, j1, i2, j2, color, w, h, thickness);
81 }
82 
97  double size, const vpColor &color, unsigned int thickness)
98 {
99  vp_display_display_camera(I, cMo, cam, size, color, thickness);
100 }
101 
115 void vpDisplay::displayCharString(const vpImage<vpRGBa> &I, const vpImagePoint &ip, const char *string,
116  const vpColor &color)
117 {
118  vp_display_display_char_string(I, ip, string, color);
119 }
120 
134 void vpDisplay::displayCharString(const vpImage<vpRGBa> &I, int i, int j, const char *string, const vpColor &color)
135 {
136  vp_display_display_char_string(I, i, j, string, color);
137 }
138 
149 void vpDisplay::displayCircle(const vpImage<vpRGBa> &I, const vpImagePoint &center, unsigned int radius,
150  const vpColor &color, bool fill, unsigned int thickness)
151 {
152  vp_display_display_circle(I, center, radius, color, fill, thickness);
153 }
154 
165 void vpDisplay::displayCircle(const vpImage<vpRGBa> &I, int i, int j, unsigned int radius, const vpColor &color,
166  bool fill, unsigned int thickness)
167 {
168  vp_display_display_circle(I, i, j, radius, color, fill, thickness);
169 }
170 
179 void vpDisplay::displayCross(const vpImage<vpRGBa> &I, const vpImagePoint &ip, unsigned int size, const vpColor &color,
180  unsigned int thickness)
181 {
182  vp_display_display_cross(I, ip, size, color, thickness);
183 }
184 
193 void vpDisplay::displayCross(const vpImage<vpRGBa> &I, int i, int j, unsigned int size, const vpColor &color,
194  unsigned int thickness)
195 {
196  vp_display_display_cross(I, i, j, size, color, thickness);
197 }
198 
207  const vpColor &color, unsigned int thickness)
208 {
209  vp_display_display_dot_line(I, ip1, ip2, color, thickness);
210 }
211 
220 void vpDisplay::displayDotLine(const vpImage<vpRGBa> &I, int i1, int j1, int i2, int j2, const vpColor &color,
221  unsigned int thickness)
222 {
223  vp_display_display_dot_line(I, i1, j1, i2, j2, color, thickness);
224 }
225 
235 void vpDisplay::displayDotLine(const vpImage<vpRGBa> &I, const std::vector<vpImagePoint> &ips, bool closeTheShape,
236  const vpColor &color, unsigned int thickness)
237 {
238  if (ips.size() <= 1)
239  return;
240 
241  for (size_t i = 0; i < ips.size() - 1; i++)
242  vp_display_display_dot_line(I, ips[i], ips[i + 1], color, thickness);
243 
244  if (closeTheShape)
245  vp_display_display_dot_line(I, ips.front(), ips.back(), color, thickness);
246 }
247 
298 void vpDisplay::displayEllipse(const vpImage<vpRGBa> &I, const vpImagePoint &center, const double &coef1,
299  const double &coef2, const double &coef3, bool use_centered_moments,
300  const vpColor &color, unsigned int thickness)
301 {
302  vpDisplay::displayEllipse(I, center, coef1, coef2, coef3, 0., vpMath::rad(360), use_centered_moments, color,
303  thickness);
304 }
305 
362 void vpDisplay::displayEllipse(const vpImage<vpRGBa> &I, const vpImagePoint &center, const double &coef1,
363  const double &coef2, const double &coef3, const double &theta1, const double &theta2,
364  bool use_centered_moments, const vpColor &color, unsigned int thickness)
365 {
366  vp_display_display_ellipse(I, center, coef1, coef2, coef3, theta1, theta2, use_centered_moments, color, thickness);
367 }
368 
385  double size, const vpColor &color, unsigned int thickness, const vpImagePoint &offset)
386 {
387  vp_display_display_frame(I, cMo, cam, size, color, thickness, offset);
388 }
389 
399 void vpDisplay::displayLine(const vpImage<vpRGBa> &I, const vpImagePoint &ip1, const vpImagePoint &ip2,
400  const vpColor &color, unsigned int thickness, bool segment)
401 {
402  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);
403 }
404 
415 void vpDisplay::displayLine(const vpImage<vpRGBa> &I, int i1, int j1, int i2, int j2, const vpColor &color,
416  unsigned int thickness, bool segment)
417 {
418  if (segment) {
419  vp_display_display_line(I, i1, j1, i2, j2, color, thickness);
420  }
421  else {
422  // line equation in image: i = a * j + b
423  double delta_j = static_cast<double>(j2) - static_cast<double>(j1);
424  double delta_i = static_cast<double>(i2) - static_cast<double>(i1);
425  // Test if horizontal line
426  if (std::fabs(delta_i) <= std::numeric_limits<double>::epsilon()) {
427  vp_display_display_line(I, i1, 0, i1, (I.getWidth()-1), color, thickness);
428  }
429  // Test if vertical line
430  else if (std::fabs(delta_j) <= std::numeric_limits<double>::epsilon()) {
431  vp_display_display_line(I, 0, j1, (I.getHeight()-1), j1, color, thickness);
432  }
433  else {
434  double a = delta_i / delta_j;
435  double b = static_cast<double>(i1) - a * static_cast<double>(j1);
436  std::vector<vpImagePoint> vip; // Image points that intersect image borders
437  // Test intersection with vertical line j=0
438  vpImagePoint ip_left(b, 0);
439  if (ip_left.get_i() >= 0. && ip_left.get_i() <= (I.getHeight()-1.)) {
440  vip.push_back(ip_left);
441  }
442  // Test intersection with vertical line j=width-1
443  vpImagePoint ip_right(a*(I.getWidth()-1)+b, I.getWidth()-1.);
444  if (ip_right.get_i() >= 0. && ip_right.get_i() <= (I.getHeight()-1.)) {
445  vip.push_back(ip_right);
446  }
447  if (vip.size() == 2) {
448  vp_display_display_line(I, vip[0], vip[1], color, thickness);
449  return;
450  }
451  // Test intersection with horizontal line i=0
452  vpImagePoint ip_top(0, -b/a);
453  if (ip_top.get_j() >= 0. && ip_top.get_j() <= (I.getWidth()-1.)) {
454  vip.push_back(ip_top);
455  }
456  if (vip.size() == 2) {
457  vp_display_display_line(I, vip[0], vip[1], color, thickness);
458  return;
459  }
460  // Test intersection with horizontal line i=height-1
461  vpImagePoint ip_bottom(I.getHeight()-1., (I.getHeight()-1. - b)/a);
462  if (ip_bottom.get_j() >= 0. && ip_bottom.get_j() <= (I.getWidth()-1.)) {
463  vip.push_back(ip_bottom);
464  }
465  if (vip.size() == 2) {
466  vp_display_display_line(I, vip[0], vip[1], color, thickness);
467  return;
468  }
469  }
470  }
471 }
472 
480 void vpDisplay::displayLine(const vpImage<vpRGBa> &I, const std::vector<vpImagePoint> &ips, bool closeTheShape,
481  const vpColor &color, unsigned int thickness)
482 {
483  if (ips.size() <= 1)
484  return;
485 
486  for (size_t i = 0; i < ips.size() - 1; i++)
487  vp_display_display_line(I, ips[i], ips[i + 1], color, thickness);
488 
489  if (closeTheShape)
490  vp_display_display_line(I, ips.front(), ips.back(), color, thickness);
491 }
492 
500 void vpDisplay::displayPoint(const vpImage<vpRGBa> &I, const vpImagePoint &ip, const vpColor &color,
501  unsigned int thickness)
502 {
503  vp_display_display_point(I, ip, color, thickness);
504 }
505 
513 void vpDisplay::displayPoint(const vpImage<vpRGBa> &I, int i, int j, const vpColor &color, unsigned int thickness)
514 {
515  vp_display_display_point(I, i, j, color, thickness);
516 }
517 
526 void vpDisplay::displayPolygon(const vpImage<vpRGBa> &I, const std::vector<vpImagePoint> &vip, const vpColor &color,
527  unsigned int thickness, bool closed)
528 {
529  vp_display_display_polygon(I, vip, color, thickness, closed);
530 }
531 
546 void vpDisplay::displayRectangle(const vpImage<vpRGBa> &I, const vpImagePoint &topLeft, unsigned int width,
547  unsigned int height, const vpColor &color, bool fill, unsigned int thickness)
548 {
549  vp_display_display_rectangle(I, topLeft, width, height, color, fill, thickness);
550 }
551 
566 void vpDisplay::displayRectangle(const vpImage<vpRGBa> &I, int i, int j, unsigned int width, unsigned int height,
567  const vpColor &color, bool fill, unsigned int thickness)
568 {
569  vp_display_display_rectangle(I, i, j, width, height, color, fill, thickness);
570 }
571 
585 void vpDisplay::displayRectangle(const vpImage<vpRGBa> &I, const vpRect &rectangle, const vpColor &color, bool fill,
586  unsigned int thickness)
587 {
588  vp_display_display_rectangle(I, rectangle, color, fill, thickness);
589 }
590 
604 void vpDisplay::displayRectangle(const vpImage<vpRGBa> &I, const vpImagePoint &center, float angle, unsigned int width,
605  unsigned int height, const vpColor &color, unsigned int thickness)
606 {
607  vp_display_display_rectangle(I, center, angle, width, height, color, thickness);
608 }
609 
624 void vpDisplay::displayRectangle(const vpImage<vpRGBa> &I, const vpImagePoint &topLeft, const vpImagePoint &bottomRight,
625  const vpColor &color, bool fill, unsigned int thickness)
626 {
627  vp_display_display_rectangle(I, topLeft, bottomRight, color, fill, thickness);
628 }
629 
643 void vpDisplay::displayRectangle(const vpImage<vpRGBa> &I, unsigned int i, unsigned int j, float angle,
644  unsigned int width, unsigned int height, const vpColor &color, unsigned int thickness)
645 {
646  vp_display_display_rectangle(I, i, j, angle, width, height, color, thickness);
647 }
648 
661 void vpDisplay::displayText(const vpImage<vpRGBa> &I, const vpImagePoint &ip, const std::string &s,
662  const vpColor &color)
663 {
664  vp_display_display_text(I, ip, s, color);
665 }
666 
679 void vpDisplay::displayText(const vpImage<vpRGBa> &I, int i, int j, const std::string &s, const vpColor &color)
680 {
681  vp_display_display_text(I, i, j, s, color);
682 }
683 
713 void vpDisplay::flush(const vpImage<vpRGBa> &I) { vp_display_flush(I); }
714 
724 void vpDisplay::flushROI(const vpImage<vpRGBa> &I, const vpRect &roi) { vp_display_flush_roi(I, roi); }
725 
737 void vpDisplay::display(const vpImage<vpRGBa> &I) { vp_display_display(I); }
738 
743 void vpDisplay::displayROI(const vpImage<vpRGBa> &I, const vpRect &roi) { vp_display_display_roi(I, roi); }
744 
762 bool vpDisplay::getClick(const vpImage<vpRGBa> &I, bool blocking) { return vp_display_get_click(I, blocking); }
763 
782 bool vpDisplay::getClick(const vpImage<vpRGBa> &I, vpImagePoint &ip, bool blocking)
783 {
784  return vp_display_get_click(I, ip, blocking);
785 }
786 
808  bool blocking)
809 {
810  return vp_display_get_click(I, ip, button, blocking);
811 }
812 
830 {
831  vpImagePoint ip;
832  return vpDisplay::getClick(I, ip, button, blocking);
833 }
834 
856  bool blocking)
857 {
858  return vp_display_get_click_up(I, ip, button, blocking);
859 }
860 
878 {
879  vpImagePoint ip;
880  return vpDisplay::getClickUp(I, ip, button, blocking);
881 }
882 
965 bool vpDisplay::getKeyboardEvent(const vpImage<vpRGBa> &I, bool blocking)
966 {
967  return vp_display_get_keyboard_event(I, blocking);
968 }
969 
1056 bool vpDisplay::getKeyboardEvent(const vpImage<vpRGBa> &I, std::string &key, bool blocking)
1057 {
1058  return vp_display_get_keyboard_event(I, key, blocking);
1059 }
1060 
1147 bool vpDisplay::getKeyboardEvent(const vpImage<vpRGBa> &I, char *key, bool blocking)
1148 {
1149  return vp_display_get_keyboard_event(I, key, blocking);
1150 }
1151 
1162 {
1163  return vp_display_get_pointer_motion_event(I, ip);
1164 }
1165 
1176 {
1177  return vp_display_get_pointer_position(I, ip);
1178 }
1179 
1189 void vpDisplay::setBackground(const vpImage<vpRGBa> &I, const vpColor &color) { vp_display_set_background(I, color); }
1190 
1204 void vpDisplay::setFont(const vpImage<vpRGBa> &I, const std::string &fontname) { vp_display_set_font(I, fontname); }
1205 
1213 void vpDisplay::setTitle(const vpImage<vpRGBa> &I, const std::string &windowtitle)
1214 {
1215  vp_display_set_title(I, windowtitle);
1216 }
1217 
1228 void vpDisplay::setWindowPosition(const vpImage<vpRGBa> &I, int winx, int winy)
1229 {
1230  vp_display_set_window_position(I, winx, winy);
1231 }
1232 
1242 unsigned int vpDisplay::getDownScalingFactor(const vpImage<vpRGBa> &I) { 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)
double get_i() const
Definition: vpImagePoint.h:204
static void displayEllipse(const vpImage< unsigned char > &I, const vpImagePoint &center, 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.
Class to define colors available for display functionnalities.
Definition: vpColor.h:119
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 void display(const vpImage< unsigned char > &I)
double get_j() const
Definition: vpImagePoint.h:215
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)
Definition: vpMath.h:108
static void displayCircle(const vpImage< unsigned char > &I, const vpImagePoint &center, 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
Definition: vpImage.h:186
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()
Definition: vpDisplay.h:229
static void setBackground(const vpImage< unsigned char > &I, const vpColor &color)
Defines a rectangle in the plane.
Definition: vpRect.h:78
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 ...
Definition: vpImagePoint.h:88
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
Definition: vpImage.h:244
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)