ViSP  2.9.0
test1394TwoGrabber.cpp
/****************************************************************************
*
* $Id: test1394TwoGrabber.cpp 4574 2014-01-09 08:48:51Z fspindle $
*
* This file is part of the ViSP software.
* Copyright (C) 2005 - 2014 by INRIA. All rights reserved.
*
* This software is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* ("GPL") version 2 as published by the Free Software Foundation.
* See the file LICENSE.txt at the root directory of this source
* distribution for additional information about the GNU GPL.
*
* For using ViSP with software that can not be combined with the GNU
* GPL, please contact INRIA about acquiring a ViSP Professional
* Edition License.
*
* See http://www.irisa.fr/lagadic/visp/visp.html for more information.
*
* This software was developed at:
* INRIA Rennes - Bretagne Atlantique
* Campus Universitaire de Beaulieu
* 35042 Rennes Cedex
* France
* http://www.irisa.fr/lagadic
*
* If you have questions regarding the use of this file, please contact
* INRIA at visp@inria.fr
*
* This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
* WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
*
*
* Description:
* Firewire cameras video capture.
*
* Authors:
* Fabien Spindler
*
*****************************************************************************/
#include <visp/vpConfig.h>
#include <visp/vpDebug.h>
#include <iostream>
#include <string>
#if defined(VISP_HAVE_DC1394_2)
#include <visp/vp1394TwoGrabber.h>
#include <visp/vpImageIo.h>
#include <visp/vpIoTools.h>
int
main()
{
try {
std::cout << "IEEE1394 test in progress..." << std::endl;
// Get the user name
std::string username;
std::string outputpath = "/tmp/" + username;
// Creation of an empty image container
// Creation of a framegrabber
uint64_t guid;
// Get the number of cameras connected on the bus
unsigned int ncameras; // Number of cameras on the bus
ncameras = g.getNumCameras();
for (unsigned int i=0; i < ncameras; i++) {
g.setCamera(i);
g.getGuid(guid);
std::cout << "Detected camera with GUID 0x"
<< std::hex << guid << std::endl;
}
// If more than one camera connected, use the last one
if (ncameras > 1) {
g.setCamera(ncameras -1);
g.getGuid(guid);
std::cout << "Use camera with GUID 0x" << std::hex << guid << std::endl;
g.setCamera(0); // to be sure that the setCamera() in the next line with guid as parameter works
g.setCamera(guid);
}
for (int i=0;i<10;i++) g.acquire(I);
g.close();
std::string filename = outputpath + "/imagetest1.pgm";
std::cout << "Write image: " << filename << std::endl;
vpImageIo::write(I, filename);
std::cout << "New connection..."<< std::endl;
g.open(I);
g.close();
std::cout << "New connection..."<< std::endl;
g.open(I);
//g.setVideoMode(vp1394TwoGrabber::vpVIDEO_MODE_800x600_YUV422);
g.acquire(I);
g.close();
filename = outputpath + "/imagetest2.pgm";
std::cout << "Write image: " << filename << std::endl;
vpImageIo::write(I, filename);
}
catch (...) {
vpCERROR << "Failure: exit" << std::endl;
}
}
#else
int
main()
{
vpTRACE("Ieee 1394 grabber capabilities are not available...\n"
"You should install libdc1394-2 to use this binary.") ;
}
#endif
/*
* Local variables:
* c-basic-offset: 2
* End:
*/