#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/vpDisplayFactory.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 = static_cast<unsigned int>(atoi(optarg_));
break;
case 'o':
save = true;
opath = optarg_;
break;
case 'h':
usage(argv[0], nullptr, icamera, opath);
return false;
default:
usage(argv[0], optarg_, icamera, opath);
return false;
}
}
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)
{
#if (VISP_CXX_STANDARD >= VISP_CXX_STANDARD_11)
std::shared_ptr<vpDisplay> display;
#else
#endif
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;
std::cout << "Image size : " << I.getWidth() << " " << I.getHeight() << std::endl;
if (opt_display) {
#if defined(VISP_HAVE_DISPLAY)
#if (VISP_CXX_STANDARD >= VISP_CXX_STANDARD_11)
#else
#endif
#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::cout <<
"Write: " <<
filename << std::endl;
}
if (opt_click && opt_display) {
break;
}
else {
static unsigned int cpt = 0;
if (cpt++ == 10)
break;
}
}
#if (VISP_CXX_STANDARD < VISP_CXX_STANDARD_11)
if (display != nullptr) {
delete display;
}
#endif
return EXIT_SUCCESS;
}
#if (VISP_CXX_STANDARD < VISP_CXX_STANDARD_11)
if (display != nullptr) {
delete display;
}
#endif
std::cout <<
"Catch an exception: " <<
e.getStringMessage() << std::endl;
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
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.
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)
Definition of the vpImage class member functions.
static bool parse(int *argcPtr, const char **argv, vpArgvInfo *argTable, int flags)
std::shared_ptr< vpDisplay > createDisplay()
Return a smart pointer vpDisplay specialization if a GUI library is available or nullptr otherwise.
vpDisplay * allocateDisplay()
Return a newly allocated vpDisplay specialization if a GUI library is available or nullptr otherwise.