#include <iostream>
#include <visp3/core/vpConfig.h>
#if defined(VISP_HAVE_FLYCAPTURE)
#include <visp3/core/vpImage.h>
#include <visp3/core/vpImageConvert.h>
#include <visp3/gui/vpDisplayGDI.h>
#include <visp3/gui/vpDisplayOpenCV.h>
#include <visp3/gui/vpDisplayX.h>
#include <visp3/io/vpImageIo.h>
#include <visp3/io/vpParseArgv.h>
#include <visp3/sensor/vpFlyCaptureGrabber.h>
#define GETOPTARGS "cdhi:n:o:"
#ifdef ENABLE_VISP_NAMESPACE
#endif
void usage(const char *name, const char *badparam, unsigned int icamera, std::string &opath)
{
fprintf(stdout, "\n\
Acquire and display images using PointGrey FlyCapture SDK.\n\
\n\
SYNOPSIS\n\
%s [-c] [-d] [-i <camera index>] [-o <output image filename>] [-h] \n",
name);
fprintf(stdout, "\n\
OPTIONS: Default\n\
-c \n\
Disable mouse click and acquire only 10 images.\n\
\n\
-d \n\
Turn off the display.\n\
\n\
-i [%%d] %u\n\
Camera index to connect (0 for the first one). \n\
\n\
-o [%%s]\n\
Filename for image saving. \n\
Example: -o %s\n\
The %%d is for the image numbering.\n\
\n\
-h \n\
Print the help.\n\
\n",
icamera, opath.c_str());
if (badparam) {
fprintf(stderr, "ERROR: \n");
fprintf(stderr, "\nBad parameter [%s]\n", badparam);
}
}
bool getOptions(int argc, const char **argv, bool &display, bool &click, bool &save, std::string &opath,
unsigned int &icamera)
{
const char *optarg_;
int c;
switch (c) {
case 'c':
click = false;
break;
case 'd':
display = false;
break;
case 'i':
icamera = (unsigned int)atoi(optarg_);
break;
case 'o':
save = true;
opath = optarg_;
break;
case 'h':
usage(argv[0], nullptr, icamera, opath);
return false;
break;
default:
usage(argv[0], optarg_, icamera, opath);
return false;
break;
}
}
if ((c == 1) || (c == -1)) {
usage(argv[0], nullptr, icamera, opath);
std::cerr << "ERROR: " << std::endl;
std::cerr << " Bad argument " << optarg_ << std::endl << std::endl;
return false;
}
return true;
}
int main(int argc, const char **argv)
{
try {
bool opt_display = true;
bool opt_click = true;
bool opt_save = false;
unsigned int opt_icamera = 0;
std::string opt_opath = "I%04d.pgm";
if (getOptions(argc, argv, opt_display, opt_click, opt_save, opt_opath, opt_icamera) == false) {
return EXIT_SUCCESS;
}
std::cout << "Use device : " << opt_icamera << std::endl;
if (opt_display) {
#if defined(VISP_HAVE_X11)
display = new vpDisplayX(I);
#elif defined(VISP_HAVE_GDI)
#elif defined(HAVE_OPENCV_HIGHGUI)
#else
std::cout << "No image viewer is available..." << std::endl;
#endif
}
for (;;) {
if (opt_save) {
static unsigned int frame = 0;
char buf[FILENAME_MAX];
snprintf(buf, FILENAME_MAX, opt_opath.c_str(), frame++);
std::string filename(buf);
std::cout << "Write: " << filename << std::endl;
}
if (opt_click && opt_display) {
break;
}
else {
static unsigned int cpt = 0;
if (cpt++ == 10)
break;
}
}
if (display)
delete display;
return EXIT_SUCCESS;
}
return EXIT_FAILURE;
}
}
#else
int main()
{
std::cout << "You do not have PointGrey FlyCapture SDK enabled..." << std::endl;
std::cout << "Tip:" << std::endl;
std::cout << "- Install FlyCapture SDK, configure again ViSP using cmake and build again this example" << std::endl;
return EXIT_SUCCESS;
}
#endif
Display for windows using GDI (available on any windows 32 platform).
The vpDisplayOpenCV allows to display image using the OpenCV library. Thus to enable this class OpenC...
Class that defines generic functionalities for display.
static bool getClick(const vpImage< unsigned char > &I, bool blocking=true)
static void display(const vpImage< unsigned char > &I)
static void flush(const vpImage< unsigned char > &I)
static void displayText(const vpImage< unsigned char > &I, const vpImagePoint &ip, const std::string &s, const vpColor &color)
error that can be emitted by ViSP classes.
const std::string & getStringMessage() const
void setCameraIndex(unsigned int index)
static unsigned int getCameraSerial(unsigned int index)
void open(vpImage< unsigned char > &I)
void acquire(vpImage< unsigned char > &I)
unsigned int getCameraIndex() const
static void write(const vpImage< unsigned char > &I, const std::string &filename, int backend=IO_DEFAULT_BACKEND)
unsigned int getWidth() const
unsigned int getHeight() const
static bool parse(int *argcPtr, const char **argv, vpArgvInfo *argTable, int flags)