Fawkes API  Fawkes Development Version
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
camera.h
1 
2 /***************************************************************************
3  * camera.h - Abstract class defining a camera
4  *
5  * Created: Tue Feb 22 10:36:39 2005
6  * Copyright 2005-2007 Tim Niemueller [www.niemueller.de]
7  *
8  ****************************************************************************/
9 
10 /* This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License as published by
12  * the Free Software Foundation; either version 2 of the License, or
13  * (at your option) any later version. A runtime exception applies to
14  * this software (see LICENSE.GPL_WRE file mentioned below for details).
15  *
16  * This program is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19  * GNU Library General Public License for more details.
20  *
21  * Read the full text in the LICENSE.GPL_WRE file in the doc directory.
22  */
23 
24 #ifndef __FIREVISION_CAMERA_H_
25 #define __FIREVISION_CAMERA_H_
26 
27 #include <fvutils/color/colorspaces.h>
28 #include <utils/time/time.h>
29 
30 namespace firevision {
31 #if 0 /* just to make Emacs auto-indent happy */
32 }
33 #endif
34 
35 class Camera
36 {
37 
38  public:
39  virtual ~Camera();
40 
41  virtual void open() = 0;
42  virtual void start() = 0;
43  virtual void stop() = 0;
44  virtual void close() = 0;
45  virtual void capture() = 0;
46  virtual void flush() = 0;
47 
48  virtual bool ready() = 0;
49 
50  virtual void print_info() = 0;
51 
52  virtual unsigned char * buffer() = 0;
53  virtual unsigned int buffer_size() = 0;
54  virtual void dispose_buffer() = 0;
55 
56  virtual unsigned int pixel_width() = 0;
57  virtual unsigned int pixel_height() = 0;
58  virtual colorspace_t colorspace() = 0;
59  virtual fawkes::Time * capture_time();
60 
61  // virtual unsigned int number_of_images() = 0;
62  virtual void set_image_number(unsigned int n) = 0;
63 };
64 
65 } // end namespace firevision
66 
67 #endif