Visual Servoing Platform version 3.7.0
Loading...
Searching...
No Matches
manGrab1394.cpp
1/*
2 * ViSP, open source Visual Servoing Platform software.
3 * Copyright (C) 2005 - 2025 by Inria. All rights reserved.
4 *
5 * This software is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 * See the file LICENSE.txt at the root directory of this source
10 * distribution for additional information about the GNU GPL.
11 *
12 * For using ViSP with software that can not be combined with the GNU
13 * GPL, please contact Inria about acquiring a ViSP Professional
14 * Edition License.
15 *
16 * See https://visp.inria.fr for more information.
17 *
18 * This software was developed at:
19 * Inria Rennes - Bretagne Atlantique
20 * Campus Universitaire de Beaulieu
21 * 35042 Rennes Cedex
22 * France
23 *
24 * If you have questions regarding the use of this file, please contact
25 * Inria at visp@inria.fr
26 *
27 * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
28 * WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
29 *
30 * Description:
31 * Images grabbing example.
32 */
45
46#include <stdio.h>
47#include <stdlib.h>
48#include <visp3/core/vpConfig.h>
49#include <visp3/core/vpImage.h>
50#include <visp3/sensor/vp1394TwoGrabber.h>
51
52int main()
53{
54#ifdef VISP_HAVE_DC1394
55
56#ifdef ENABLE_VISP_NAMESPACE
57 using namespace VISP_NAMESPACE_NAME;
58#endif
59
60 try {
61 unsigned int ncameras; // Number of cameras on the bus
63 g.getNumCameras(ncameras);
65
66 // If the first camera supports vpVIDEO_MODE_640x480_YUV422 video mode
67 g.setCamera(0);
69
70 // If all cameras support 30 fps acquisition
71 for (unsigned int camera = 0; camera < ncameras; camera++) {
72 g.setCamera(camera);
74 }
75
76 for (;;) {
77 for (unsigned int camera = 0; camera < ncameras; camera++) {
78 // Acquire successively images from the different cameras
79 g.setCamera(camera);
80 g.acquire(I[camera]);
81 }
82 }
83 delete[] I;
84 return EXIT_SUCCESS;
85 }
86 catch (const vpException &e) {
87 std::cout << "Catch an exception: " << e << std::endl;
88 return EXIT_FAILURE;
89 }
90
91#endif
92}
Class for firewire ieee1394 video devices using libdc1394-2.x api.
void acquire(vpImage< unsigned char > &I)
void setVideoMode(vp1394TwoVideoModeType videomode)
void setCamera(uint64_t camera)
void setFramerate(vp1394TwoFramerateType fps)
void getNumCameras(unsigned int &ncameras) const
error that can be emitted by ViSP classes.
Definition vpException.h:60
Definition of the vpImage class member functions.
Definition vpImage.h:131