Grab and display grey level images using OpenCV frame grabbing capabilities.
#include <visp/vpConfig.h>
#include <visp/vpDebug.h>
#if defined (VISP_HAVE_OPENCV)
#include <visp/vpOpenCVGrabber.h>
#include <visp/vpImage.h>
#include <visp/vpImageIo.h>
#include <visp/vpDisplayOpenCV.h>
#include <visp/vpParseArgv.h>
#include <visp/vpTime.h>
#define GETOPTARGS "dhn:o:D:"
void usage(const char *name, const char *badparam, unsigned int &nframes, std::string &opath);
bool getOptions(int argc, const char **argv, bool &display,
unsigned int &nframes, bool &save, std::string &opath, int &deviceType);
void usage(const char *name, const char *badparam, unsigned int &nframes, std::string &opath)
{
fprintf(stdout, "\n\
Acquire and display images using OpenCV library.\n\
\n\
SYNOPSIS\n\
%s [-d] [-n] [-o] [-h] \n", name);
fprintf(stdout, "\n\
OPTIONS: Default\n\
-d \n\
Turn off the display.\n\
\n\
-D [%%s] ANY\n\
Type of device to detect. \n\
It can be ANY, MIL, VFW, V4L, V4L2, DC1394, CMU1394, DSHOW. \n\
\n\
-n [%%u] %u\n\
Number of frames to acquire. \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", nframes, 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,
unsigned int &nframes, bool &save, std::string &opath, int &deviceType)
{
const char *optarg_;
int c;
switch (c) {
case 'd': display = false; break;
case 'D':
if (strcmp( optarg_ ,"ANY") == 0 ) {deviceType = CV_CAP_ANY;}
else if ( strcmp( optarg_ ,"MIL") == 0) {deviceType = CV_CAP_MIL;}
else if ( strcmp( optarg_ ,"VFW") == 0) {deviceType = CV_CAP_VFW;}
else if ( strcmp( optarg_ ,"V4L") == 0) {deviceType = CV_CAP_V4L;}
else if ( strcmp( optarg_ ,"V4L2") == 0) {deviceType = CV_CAP_V4L2;}
else if ( strcmp( optarg_ ,"DC1394") == 0) {deviceType = CV_CAP_DC1394;}
else if ( strcmp( optarg_ ,"CMU1394") == 0) {deviceType = CV_CAP_CMU1394;}
else if ( strcmp( optarg_ ,"DSHOW") == 0) {deviceType = CV_CAP_DSHOW;}
else {std::cout << "Unknown type of device" << std::endl;
deviceType = 0;}
break;
case 'n':
nframes = (unsigned int)atoi(optarg_); break;
case 'o':
save = true;
opath = optarg_; break;
case 'h': usage(argv[0], NULL, nframes, opath); return false; break;
default:
usage(argv[0], optarg_, nframes, opath);
return false; break;
}
}
if ((c == 1) || (c == -1)) {
usage(argv[0], NULL, nframes, 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;
unsigned nframes = 50;
bool save = false;
int deviceType = CV_CAP_ANY;
#ifdef GRAB_COLOR
#else
#endif
#ifdef GRAB_COLOR
# if !defined(_WIN32) && (defined(__unix__) || defined(__unix) || (defined(__APPLE__) && defined(__MACH__))) // UNIX
std::string opath = "/tmp/I%04d.ppm";
# elif defined(_WIN32)
std::string opath = "C:/temp/I%04d.ppm";
# endif
#else
# if !defined(_WIN32) && (defined(__unix__) || defined(__unix) || (defined(__APPLE__) && defined(__MACH__))) // UNIX
std::string opath = "/tmp/I%04d.pgm";
# elif defined(_WIN32)
std::string opath = "C:/temp/I%04d.pgm";
# endif
#endif
if (getOptions(argc, argv, opt_display, nframes, save, opath, deviceType) == false) {
exit (-1);
}
try {
}
catch(...)
{
vpCTRACE <<
"Cannot acquire an image... "
<< "Check if a camera is connected to your computer."
<< std::endl ;
return 0;
}
std::cout <<
"Image size: width : " << I.
getWidth() <<
" height: "
if (opt_display) {
display.
init(I,100,100,
"OpenCV framegrabber");
}
double tbegin=0, tend=0, tloop=0, ttotal=0;
ttotal = 0;
for (unsigned i = 0; i < nframes; i++) {
if (opt_display) {
}
if (save) {
char buf[FILENAME_MAX];
sprintf(buf, opath.c_str(), i);
std::string filename(buf);
std::cout << "Write: " << filename << std::endl;
}
tloop = tend - tbegin;
tbegin = tend;
std::cout << "loop time: " << tloop << " ms" << std::endl;
ttotal += tloop;
}
std::cout << "Mean loop time: " << ttotal / nframes << " ms" << std::endl;
std::cout << "Mean frequency: " << 1000./(ttotal / nframes) << " fps" << std::endl;
return 0;
}
std::cout << "Catch an exception: " << e << std::endl;
return 1;
}
}
#else // defined (VISP_HAVE_OPENCV)
int
main()
{
vpTRACE(
"OpenCV is not available...") ;
}
#endif // defined (VISP_HAVE_OPENCV)