#include <iostream>
#include <list>
#include <sstream>
#include <stdio.h>
#include <stdlib.h>
#include <visp3/core/vpConfig.h>
#include <visp3/core/vpDebug.h>
#if defined(VISP_HAVE_DC1394)
#include <visp3/core/vpDisplay.h>
#include <visp3/core/vpImage.h>
#include <visp3/core/vpRGBa.h>
#include <visp3/core/vpTime.h>
#include <visp3/gui/vpDisplayX.h>
#include <visp3/io/vpImageIo.h>
#include <visp3/io/vpParseArgv.h>
#include <visp3/sensor/vp1394TwoGrabber.h>
#define GRAB_CxOLOR
#define GETOPTARGS "b:c:df:g:hH:L:mn:io:p:rsT:v:W:"
#define DUAL_ACQ
#ifdef ENABLE_VISP_NAMESPACE
#endif
void usage(const char *name, const char *badparam, unsigned int camera, const unsigned int &nframes,
const std::string &opath, const unsigned int &roi_left, const unsigned int &roi_top,
const unsigned int &roi_width, const unsigned int &roi_height, const unsigned int &ringbuffersize,
const unsigned int &panControl)
{
if (badparam)
fprintf(stderr, "\nERROR: Bad parameter [%s]\n", badparam);
fprintf(stderr, "\n\
SYNOPSIS\n\
%s [-v <video mode>] [-f <framerate>] \n\
[-g <color coding>] [-c <camera id>] [-m] [-n <frames>] \n\
[-i] [-s] [-d] [-o <filename>] [-L <format 7 roi left position>] \n\
[-T <format 7 roi top position>] [-W <format 7 roi width>] \n\
[-H <format 7 roi height>] [-b <ring buffer size>] \n\
[-p <pan control value>] [-R] [-h]\n\
\n\
DESCRIPTION\n\
Test for firewire camera image acquisition.\n\
\n\
EXAMPLES\n\
\n\
%s -s\n\
Indicates the current settings for the first camera found on the bus.\n\n\
%s -i\n\
Gives information on the first camera found on the bus.\n\n\
%s -s -m\n\
Indicates the current settings for all the cameras found on the bus.\n\n\
%s -i -m\n\
Gives information on all the cameras found on the bus.\n\
%s -c 1\n\
Grab images from camera 1.\n\n\
%s -m\n\
Grab images from all the cameras.\n\n\
\n\
If a stereo camera is connected to the bus like the PointGrey Bumblebee,\n\
you may set the pan control to select the camera view:\n\
%s -p 0\n\
Transmit right imge.\n\
%s -p 1\n\
Transmit left imge.\n\
\n\
OPTIONS Default\n\
-v [%%u] : Video mode to set for the active camera.\n\
Use -s option so see which are the supported \n\
video modes. You can select the active \n\
camera using -c option.\n\
\n\
-f [%%u] : Framerate to set for the active camera.\n\
Use -s option so see which are the supported \n\
framerates. You can select the active \n\
camera using -c option.\n\
\n\
-g [%%u] : Color coding to set for the active camera\n\
in format 7 video mode. Use -s option so see if \n\
format 7 is supported by the camera and if so, \n\
which are the supported color codings. You can \n\
select the active camera using -c option.\n\
See -t <top>, -l <left>, -w <width>, \n\
-h <height> option to set format 7 roi.\n\
\n\
-L [%%u] : Format 7 region of interest (roi) left %u\n\
position. This option is only used if video\n\
mode is format 7.\n\
\n\
-T [%%u] : Format 7 region of interest (roi) top %u\n\
position. This option is only used if video\n\
mode is format 7.\n\
\n\
-W [%%u] : Format 7 region of interest (roi) width. %u\n\
Is set to zero, use the maximum width. This\n\
option is only used if video mode is format 7.\n\
\n\
-H [%%u] : Format 7 region of interest (roi) height. %u\n\
Is set to zero, use the maximum height. This\n\
option is only used if video mode is format 7.\n\
\n\
-c [%%u] : Active camera identifier. %u\n\
Zero is for the first camera found on the bus.\n\
\n\
-m : Flag to active multi camera acquisition. \n\
You need at least two cameras connected on \n\
the bus.\n\
\n\
-n [%%u] : Number of frames to acquire. %u\n\
\n\
-i : Flag to print camera information.\n\
\n\
-s : Print camera settings capabilities such as \n\
video mode and framerates available and exit.\n\
\n\
-d : Flag to turn off image display.\n\
\n\
-b [%%u] : Ring buffer size used during capture %u\n\
\n\
-p [%%u] : Pan control value used to control single or %u\n\
multiple image transmission from stereo vision \n\
cameras by setting the PAN register 0x884.\n\
\n\
-o [%%s] : Filename for image saving. \n\
Example: -o %s\n\
The first %%d is for the camera id. The second\n\
%%04d is for the image numbering. The format is set \n\
by the extension of the file (ex .png, .pgm, ...) \n\
\n\
-r : Reset the bus attached to the first camera found.\n\
Bus reset may help to make firewire working if the\n\
program was not properly stopped by a CTRL-C.\n\
\n\
-h : Print this help.\n\
\n",
name, name, name, name, name, name, name, name, name, roi_left, roi_top, roi_width, roi_height, camera,
nframes, ringbuffersize, panControl, opath.c_str());
}
bool read_options(int argc, const char **argv, bool &multi, unsigned int &camera, unsigned int &nframes,
bool &verbose_info, bool &verbose_settings, bool &videomode_is_set,
unsigned int &ringbuffersize, bool &display, bool &save, std::string &opath, unsigned int &roi_left,
unsigned int &roi_top, unsigned int &roi_width, unsigned int &roi_height, bool &reset,
unsigned int &panControl, bool &panControl_is_set)
{
const char *optarg_;
int c;
switch (c) {
case 'c':
camera = (unsigned int)atoi(optarg_);
break;
case 'd':
display = false;
break;
case 'f':
framerate_is_set = true;
break;
case 'g':
colorcoding_is_set = true;
break;
case 'H':
roi_height = (unsigned int)atoi(optarg_);
break;
case 'i':
verbose_info = true;
break;
case 'L':
roi_left = (unsigned int)atoi(optarg_);
break;
case 'm':
multi = true;
break;
case 'n':
nframes = (unsigned int)atoi(optarg_);
break;
case 'o':
save = true;
opath = optarg_;
break;
case 'b':
ringbuffersize_is_set = true;
ringbuffersize = (unsigned int)atoi(optarg_);
break;
case 'p':
panControl = (unsigned int)atoi(optarg_);
panControl_is_set = true;
break;
case 'r':
reset = true;
break;
case 's':
verbose_settings = true;
break;
case 'T':
roi_top = (unsigned int)atoi(optarg_);
break;
case 'v':
videomode_is_set = true;
break;
case 'W':
roi_width = (unsigned int)atoi(optarg_);
break;
case 'h':
case '?':
usage(argv[0], nullptr, camera, nframes, opath, roi_left, roi_top, roi_width, roi_height, ringbuffersize,
panControl);
return false;
break;
}
}
if ((c == 1) || (c == -1)) {
usage(argv[0], nullptr, camera, nframes, opath, roi_left, roi_top, roi_width, roi_height, ringbuffersize, panControl);
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 {
unsigned int camera = 0;
bool multi = false;
bool verbose_info = false;
bool verbose_settings = false;
bool display = true;
unsigned int nframes = 50;
unsigned int offset;
bool videomode_is_set = false;
bool framerate_is_set = false;
bool colorcoding_is_set = false;
bool ringbuffersize_is_set = false;
unsigned int ringbuffersize = 4;
bool save = false;
bool reset = false;
unsigned int panControl = 0;
bool panControl_is_set = false;
unsigned int roi_left = 0, roi_top = 0, roi_width = 0, roi_height = 0;
std::string opath = "/tmp/I%d-%04d.ppm";
if (read_options(argc, argv, multi, camera, nframes, verbose_info, verbose_settings, videomode_is_set, videomode,
framerate_is_set, framerate, colorcoding_is_set, colorcoding, ringbuffersize_is_set,
ringbuffersize, display, save, opath, roi_left, roi_top, roi_width, roi_height, reset, panControl,
panControl_is_set) == false) {
return EXIT_FAILURE;
}
if (reset) {
}
unsigned int ncameras = 0;
g.getNumCameras(ncameras);
std::cout << "Number of cameras on the bus: " << ncameras << std::endl;
if (multi) {
if (ncameras < 2) {
std::cout << "You have only " << ncameras << " camera connected on the bus." << std::endl;
std::cout << "It is not possible to active multi-camera acquisition." << std::endl;
std::cout << "Disable -m command line option, or connect an other " << std::endl;
std::cout << "cameras on the bus." << std::endl;
g.close();
return EXIT_FAILURE;
}
}
if (camera >= ncameras) {
std::cout << "You have only " << ncameras;
std::cout << " camera connected on the bus." << std::endl;
std::cout << "It is not possible to select camera " << camera << std::endl;
std::cout << "Check your -c <camera> command line option." << std::endl;
g.close();
return EXIT_FAILURE;
}
if (multi) {
camera = 0;
}
else {
ncameras = 1;
}
offset = camera;
if (verbose_info || verbose_settings) {
for (unsigned int i = 0; i < ncameras; i++) {
g.setCamera(i + offset);
if (verbose_info)
g.printCameraInfo();
if (verbose_settings) {
std::list<vp1394TwoGrabber::vp1394TwoVideoModeType> lmode;
std::list<vp1394TwoGrabber::vp1394TwoFramerateType> lfps;
std::list<vp1394TwoGrabber::vp1394TwoColorCodingType> lcoding;
std::list<vp1394TwoGrabber::vp1394TwoVideoModeType>::const_iterator it_lmode;
std::list<vp1394TwoGrabber::vp1394TwoFramerateType>::const_iterator it_lfps;
std::list<vp1394TwoGrabber::vp1394TwoColorCodingType>::const_iterator it_lcoding;
uint64_t guid;
g.getVideoMode(curmode);
g.getFramerate(curfps);
g.getColorCoding(curcoding);
g.getVideoModeSupported(lmode);
g.getGuid(guid);
std::cout << "----------------------------------------------------------" << std::endl
<< "---- Video modes and framerates supported by camera " << i + offset << " ----" << std::endl
<< "---- with guid 0x" << std::hex << guid << " ----" << std::endl
<< "---- * is for the current settings ----" << std::endl
<< "---- between ( ) you have the corresponding option ----" << std::endl
<< "---- to use. ----" << std::endl
<< "----------------------------------------------------------" << std::endl;
for (it_lmode = lmode.begin(); it_lmode != lmode.end(); ++it_lmode) {
std::stringstream ss;
ss << (int)supmode;
if (curmode == supmode)
<< std::endl;
else
<< std::endl;
if (g.isVideoModeFormat7(supmode)) {
g.getColorCodingSupported(supmode, lcoding);
for (it_lcoding = lcoding.begin(); it_lcoding != lcoding.end(); ++it_lcoding) {
supcoding = *it_lcoding;
std::stringstream ss;
ss << (int)supcoding;
if ((curmode == supmode) && (supcoding == curcoding))
<< ")" << std::endl;
else
<< ")" << std::endl;
}
}
else {
g.getFramerateSupported(supmode, lfps);
for (it_lfps = lfps.begin(); it_lfps != lfps.end(); ++it_lfps) {
std::stringstream ss;
ss << (int)supfps;
if ((curmode == supmode) && (supfps == curfps))
<< std::endl;
else
<< std::endl;
}
}
}
std::cout << "----------------------------------------------------------" << std::endl;
}
}
return EXIT_SUCCESS;
}
if (panControl_is_set) {
g.setPanControl(panControl);
}
if (videomode_is_set) {
g.setCamera(camera);
g.setVideoMode(videomode);
}
else {
g.setCamera(camera);
g.getVideoMode(videomode);
}
if (framerate_is_set) {
g.setCamera(camera);
g.setFramerate(framerate);
}
if (colorcoding_is_set) {
g.setCamera(camera);
g.setColorCoding(colorcoding);
}
if (ringbuffersize_is_set) {
g.setRingBufferSize(ringbuffersize);
}
if (g.isVideoModeFormat7(videomode))
g.setFormat7ROI(roi_left, roi_top, roi_width, roi_height);
bool *grab_color = new bool[ncameras];
#ifdef VISP_HAVE_X11
vpDisplayX *d = nullptr;
if (display)
d = new vpDisplayX[ncameras];
#endif
for (unsigned int i = 0; i < ncameras; i++) {
g.setCamera(i + offset);
grab_color[i] = g.isColor();
if (grab_color[i]) {
g.acquire(Ic[i]);
std::cout <<
"Image size for camera " << i + offset <<
" : width: " << Ic[i].
getWidth()
<<
" height: " << Ic[i].
getHeight() << std::endl;
#ifdef VISP_HAVE_X11
if (display) {
std::stringstream title;
title << "Images captured by camera ";
title << i + offset;
d[i].
init(Ic[i], (
int)(100 + i * 50), (
int)(100 + i * 50), title.str());
}
#endif
}
else {
g.acquire(Ig[i]);
std::cout <<
"Image size for camera " << i + offset <<
" : width: " << Ig[i].
getWidth()
<<
" height: " << Ig[i].
getHeight() << std::endl;
#ifdef VISP_HAVE_X11
if (display) {
std::stringstream title;
title << "Images captured by camera ";
title << i + offset;
d[i].
init(Ig[i], (
int)(100 + i * 50), (
int)(100 + i * 50), title.str());
}
#endif
}
}
std::cout << "Capture in process..." << std::endl;
double tbegin = 0, ttotal = 0;
ttotal = 0;
for (unsigned int i = 0; i < nframes; i++) {
for (unsigned int c = 0; c < ncameras; c++) {
g.setCamera(c + offset);
if (grab_color[c]) {
g.acquire(Ic[c]);
#ifdef VISP_HAVE_X11
if (display) {
}
#endif
}
else {
g.acquire(Ig[c]);
#ifdef VISP_HAVE_X11
if (display) {
}
#endif
}
if (save) {
char buf[FILENAME_MAX];
snprintf(buf, FILENAME_MAX, opath.c_str(), c + offset, i);
std::string filename(buf);
std::cout << "Write: " << filename << std::endl;
if (grab_color[c]) {
}
else {
}
}
}
double 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;
g.close();
delete[] Ic;
delete[] Ig;
delete[] grab_color;
#ifdef VISP_HAVE_X11
if (display)
delete[] d;
#endif
return EXIT_SUCCESS;
}
std::cout << "Catch an exception: " << e << std::endl;
return EXIT_FAILURE;
}
}
#else
int main()
{
std::cout << "This example requires dc1394 SDK. " << std::endl;
std::cout << "Tip if you are on a unix-like system:" << std::endl;
std::cout << "- Install libdc1394-2, configure again ViSP using cmake and build again this example" << std::endl;
return EXIT_SUCCESS;
}
#endif
Class for firewire ieee1394 video devices using libdc1394-2.x api.
static std::string colorCoding2string(vp1394TwoColorCodingType colorcoding)
static std::string framerate2string(vp1394TwoFramerateType fps)
static std::string videoMode2string(vp1394TwoVideoModeType videomode)
void init(vpImage< unsigned char > &I, int winx=-1, int winy=-1, const std::string &title="") VP_OVERRIDE
static void display(const vpImage< unsigned char > &I)
static void flush(const vpImage< unsigned char > &I)
error that can be emitted by ViSP classes.
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)
VISP_EXPORT int wait(double t0, double t)
VISP_EXPORT double measureTimeMs()