Test all the displays. Draws several shapes.
#include <visp3/core/vpConfig.h>
#include <visp3/core/vpDebug.h>
#include <iostream>
#include <stdlib.h>
#include <string>
#if defined(VISP_HAVE_GTK) || defined(VISP_HAVE_X11) || defined(VISP_HAVE_GDI) || defined(VISP_HAVE_D3D9) || defined(VISP_HAVE_OPENCV)
#include <visp3/core/vpImage.h>
#include <visp3/core/vpIoTools.h>
#include <visp3/core/vpRect.h>
#include <visp3/io/vpImageIo.h>
#include <visp3/io/vpParseArgv.h>
#include <visp3/gui/vpDisplayD3D.h>
#include <visp3/gui/vpDisplayGDI.h>
#include <visp3/gui/vpDisplayGTK.h>
#include <visp3/gui/vpDisplayOpenCV.h>
#include <visp3/gui/vpDisplayX.h>
#define GETOPTARGS "hldc"
#ifdef ENABLE_VISP_NAMESPACE
#endif
static void usage(const char *name, const char *badparam)
{
fprintf(stdout, "\n\
Test video devices or display.\n\
\n\
SYNOPSIS\n\
%s [-l] [-c] [-d] [-h]\n\
",
name);
fprintf(stdout, "\n\
OPTIONS: Default\n\
-c\n\
Disable the mouse click. Useful to automate the \n\
execution of this program without human intervention.\n\
\n\
-d \n\
Turn off the display.\n\
\n\
-l\n\
Print the list of video-devices available and exit.\n\
\n\
-h\n\
Print the help.\n\n");
if (badparam)
fprintf(stdout, "\nERROR: Bad parameter [%s]\n", badparam);
}
static bool getOptions(int argc, const char **argv, bool &list, bool &click_allowed, bool &display)
{
const char *optarg_;
int c;
switch (c) {
case 'l':
list = true;
break;
case 'h':
usage(argv[0], nullptr);
return false;
break;
case 'c':
click_allowed = false;
break;
case 'd':
display = false;
break;
default:
usage(argv[0], optarg_);
return false;
break;
}
}
if ((c == 1) || (c == -1)) {
usage(argv[0], nullptr);
std::cerr << "ERROR: " << std::endl;
std::cerr << " Bad argument " << optarg_ << std::endl << std::endl;
return false;
}
return true;
}
{
unsigned int w, h;
w = 60;
h = 50;
std::vector<vpImagePoint> vip;
vip.clear();
vip.clear();
vip.clear();
polygon.buildFrom(vip);
}
template <typename Type>
static void runTest(bool opt_display, bool opt_click_allowed)
{
#if defined(VISP_HAVE_X11)
vpDisplayX *displayX = new vpDisplayX;
Ix.
init(480, 640, Type(255));
if (opt_display) {
displayX->init(Ix, 100, 100, "Display X11");
draw(Ix);
if (opt_click_allowed)
}
#endif
#if defined(HAVE_OPENCV_HIGHGUI)
Icv.
init(480, 640, Type(255));
if (opt_display) {
displayCv->
init(Icv, 100, 100,
"Display OpenCV");
draw(Icv);
if (opt_click_allowed)
}
#endif
#if defined(VISP_HAVE_GTK)
Igtk.
init(480, 640, Type(255));
if (opt_display) {
displayGtk->
init(Igtk, 100, 100,
"Display GTK");
draw(Igtk);
if (opt_click_allowed)
}
#endif
#if defined(VISP_HAVE_GDI)
Igdi.
init(480, 640, Type(255));
if (opt_display) {
displayGdi->
init(Igdi, 100, 100,
"Display GDI");
draw(Igdi);
if (opt_click_allowed)
}
#endif
#if defined(VISP_HAVE_D3D9)
Id3d.
init(480, 640, Type(255));
if (opt_display) {
displayD3d->
init(Id3d, 100, 100,
"Display Direct 3D");
draw(Id3d);
if (opt_click_allowed)
}
#endif
#if defined(VISP_HAVE_X11)
delete displayX;
#endif
#if defined(VISP_HAVE_GTK)
delete displayGtk;
#endif
#if defined(HAVE_OPENCV_HIGHGUI)
delete displayCv;
#endif
#if defined(VISP_HAVE_GDI)
delete displayGdi;
#endif
#if defined(VISP_HAVE_D3D9)
delete displayD3d;
#endif
}
int main(int argc, const char **argv)
{
try {
bool opt_list = false;
bool opt_click_allowed = true;
bool opt_display = true;
if (getOptions(argc, argv, opt_list, opt_click_allowed, opt_display) == false) {
return EXIT_FAILURE;
}
if (opt_list) {
unsigned nbDevices = 0;
std::cout << "List of video-devices available: \n";
#if defined(VISP_HAVE_GTK)
std::cout << " GTK\n";
nbDevices++;
#endif
#if defined(VISP_HAVE_X11)
std::cout << " X11\n";
nbDevices++;
#endif
#if defined(VISP_HAVE_GDI)
std::cout << " GDI\n";
nbDevices++;
#endif
#if defined(VISP_HAVE_D3D9)
std::cout << " D3D\n";
nbDevices++;
#endif
#if defined VISP_HAVE_OPENCV
std::cout << " OpenCV\n";
nbDevices++;
#endif
if (!nbDevices) {
std::cout << " No display is available\n";
}
return EXIT_FAILURE;
}
runTest<vpRGBa>(opt_display, opt_click_allowed);
runTest<unsigned char>(opt_display, opt_click_allowed);
return EXIT_SUCCESS;
}
std::cout <<
"Catch an exception: " << e.
getMessage() << std::endl;
return EXIT_FAILURE;
}
}
#else
int main()
{
std::cout << "You do not have display functionalities..." << std::endl;
return EXIT_SUCCESS;
}
#endif
Generic class defining intrinsic camera parameters.
static const vpColor cyan
static const vpColor none
static const vpColor orange
static const vpColor blue
static const vpColor yellow
static const vpColor black
static const vpColor green
Display for windows using Direct3D 3rd party. Thus to enable this class Direct3D should be installed....
Display for windows using GDI (available on any windows 32 platform).
The vpDisplayGTK allows to display image using the GTK 3rd party library. Thus to enable this class G...
void init(vpImage< unsigned char > &I, int win_x=-1, int win_y=-1, const std::string &win_title="") VP_OVERRIDE
The vpDisplayOpenCV allows to display image using the OpenCV library. Thus to enable this class OpenC...
void init(vpImage< unsigned char > &I, int winx=-1, int winy=-1, const std::string &title="") VP_OVERRIDE
void init(vpImage< unsigned char > &I, int winx=-1, int winy=-1, const std::string &title="") VP_OVERRIDE
static bool getClick(const vpImage< unsigned char > &I, bool blocking=true)
static void displayCircle(const vpImage< unsigned char > &I, const vpImageCircle &circle, const vpColor &color, bool fill=false, unsigned int thickness=1)
static void display(const vpImage< unsigned char > &I)
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 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), const std::string &frameName="", const vpColor &textColor=vpColor::black, const vpImagePoint &textOffset=vpImagePoint(15, 15))
static void displayCross(const vpImage< unsigned char > &I, const vpImagePoint &ip, unsigned int size, const vpColor &color, unsigned int thickness=1)
static void flush(const vpImage< unsigned char > &I)
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 displayPoint(const vpImage< unsigned char > &I, const vpImagePoint &ip, const vpColor &color, unsigned int thickness=1)
static void displayDotLine(const vpImage< unsigned char > &I, const vpImagePoint &ip1, const vpImagePoint &ip2, const vpColor &color, unsigned int thickness=1)
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 displayText(const vpImage< unsigned char > &I, const vpImagePoint &ip, const std::string &s, const vpColor &color)
static void displayPolygon(const vpImage< unsigned char > &I, const std::vector< vpImagePoint > &vip, const vpColor &color, unsigned int thickness=1, bool closed=true)
error that can be emitted by ViSP classes.
const char * getMessage() const
Implementation of an homogeneous matrix and operations on such kind of matrices.
Class that defines a 2D point in an image. This class is useful for image processing and stores only ...
Definition of the vpImage class member functions.
void init(unsigned int height, unsigned int width)
Set the size of the image.
static bool parse(int *argcPtr, const char **argv, vpArgvInfo *argTable, int flags)
Defines a generic 2D polygon.
Defines a rectangle in the plane.
Implementation of a rotation matrix and operations on such kind of matrices.
Implementation of a rotation vector as Euler angle minimal representation.
Class that consider the case of a translation vector.