Last change
on this file since 26 was 15, checked in by Bayard Gildas, 9 years ago |
sources reformatted with flair-format-dir script
|
File size:
1.1 KB
|
Line | |
---|
1 | // %flair:license{
|
---|
2 | // This file is part of the Flair framework distributed under the
|
---|
3 | // CECILL-C License, Version 1.0.
|
---|
4 | // %flair:license}
|
---|
5 | /*!
|
---|
6 | * \file Ps3Eye.h
|
---|
7 | * \brief Class for Ps3Eye camera
|
---|
8 | * \author Guillaume Sanahuja, Copyright Heudiasyc UMR UTC/CNRS 7253
|
---|
9 | * \date 2012/01/19
|
---|
10 | * \version 4.0
|
---|
11 | */
|
---|
12 |
|
---|
13 | #ifndef PS3EYE_H
|
---|
14 | #define PS3EYE_H
|
---|
15 |
|
---|
16 | #include "V4LCamera.h"
|
---|
17 |
|
---|
18 | namespace flair {
|
---|
19 | namespace core {
|
---|
20 | class cvimage;
|
---|
21 | class FrameworkManager;
|
---|
22 | }
|
---|
23 | namespace gui {
|
---|
24 | class GridLayout;
|
---|
25 | class DoubleSpinBox;
|
---|
26 | class CheckBox;
|
---|
27 | }
|
---|
28 | }
|
---|
29 |
|
---|
30 | namespace flair {
|
---|
31 | namespace sensor {
|
---|
32 | /*! \class Ps3Eye
|
---|
33 | *
|
---|
34 | * \brief Class for Ps3Eye camera
|
---|
35 | */
|
---|
36 | class Ps3Eye : public V4LCamera {
|
---|
37 |
|
---|
38 | public:
|
---|
39 | /*!
|
---|
40 | * \brief Constructor
|
---|
41 | *
|
---|
42 | * Construct a Ps3Eye.
|
---|
43 | *
|
---|
44 | * \param parent parent
|
---|
45 | * \param name name
|
---|
46 | * \param camera_index index of the camera, ie /dev/videox
|
---|
47 | * \param priority priority of the Thread
|
---|
48 | */
|
---|
49 | Ps3Eye(const core::FrameworkManager *parent, std::string name,
|
---|
50 | int camera_index, uint8_t priority);
|
---|
51 |
|
---|
52 | /*!
|
---|
53 | * \brief Destructor
|
---|
54 | *
|
---|
55 | */
|
---|
56 | ~Ps3Eye();
|
---|
57 |
|
---|
58 | private:
|
---|
59 | };
|
---|
60 | } // end namespace sensor
|
---|
61 | } // end namespace flair
|
---|
62 |
|
---|
63 | #endif // PS3EYE_H
|
---|
Note:
See
TracBrowser
for help on using the repository browser.