Example of framegrabbing using OpenCV cv::VideoCapture class.
#include <visp3/core/vpConfig.h>
#include <iostream>
#include <visp3/core/vpConfig.h>
#if defined(VISP_HAVE_FLYCAPTURE)
#include <visp3/gui/vpDisplayX.h>
#include <visp3/gui/vpDisplayGDI.h>
#include <visp3/gui/vpDisplayOpenCV.h>
#include <visp3/core/vpImage.h>
#include <visp3/core/vpImageConvert.h>
#include <visp3/io/vpParseArgv.h>
#include <visp3/io/vpImageIo.h>
#include <visp3/sensor/vpFlyCaptureGrabber.h>
#define GETOPTARGS "cdhi:n:o:"
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], NULL, icamera, opath); return false; break;
default:
usage(argv[0], optarg_, icamera, opath);
return false; break;
}
}
if ((c == 1) || (c == -1)) {
usage(argv[0], NULL, 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 0;
}
std::cout << "Use device : " << opt_icamera << std::endl;
if (opt_display) {
#if defined(VISP_HAVE_X11)
#elif defined(VISP_HAVE_GDI)
#elif defined(VISP_HAVE_OPENCV)
#else
std::cout << "No image viewer is available..." << std::endl;
#endif
}
for(;;) {
if (opt_save) {
static unsigned int frame = 0;
char buf[FILENAME_MAX];
sprintf(buf, 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 0;
}
return 0;
}
}
#else
int main()
{
std::cout << "PointGrey FlyCapture SDK is not available..." << std::endl;
}
#endif