Last change
on this file since 20 was 13, checked in by Bayard Gildas, 9 years ago |
formatting script + include reformatted
|
File size:
1.1 KB
|
Rev | Line | |
---|
[4] | 1 | // %flair:license{
|
---|
[13] | 2 | // This file is part of the Flair framework distributed under the
|
---|
| 3 | // CECILL-C License, Version 1.0.
|
---|
[4] | 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 |
|
---|
[13] | 18 | namespace flair {
|
---|
| 19 | namespace core {
|
---|
| 20 | class cvimage;
|
---|
| 21 | class FrameworkManager;
|
---|
[4] | 22 | }
|
---|
[13] | 23 | namespace gui {
|
---|
| 24 | class GridLayout;
|
---|
| 25 | class DoubleSpinBox;
|
---|
| 26 | class CheckBox;
|
---|
| 27 | }
|
---|
| 28 | }
|
---|
[4] | 29 |
|
---|
[13] | 30 | namespace flair {
|
---|
| 31 | namespace sensor {
|
---|
| 32 | /*! \class Ps3Eye
|
---|
| 33 | *
|
---|
| 34 | * \brief Class for Ps3Eye camera
|
---|
| 35 | */
|
---|
| 36 | class Ps3Eye : public V4LCamera {
|
---|
[4] | 37 |
|
---|
[13] | 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);
|
---|
[4] | 51 |
|
---|
[13] | 52 | /*!
|
---|
| 53 | * \brief Destructor
|
---|
| 54 | *
|
---|
| 55 | */
|
---|
| 56 | ~Ps3Eye();
|
---|
[4] | 57 |
|
---|
[13] | 58 | private:
|
---|
| 59 | };
|
---|
[4] | 60 | } // end namespace sensor
|
---|
| 61 | } // end namespace flair
|
---|
| 62 |
|
---|
| 63 | #endif // PS3EYE_H
|
---|
Note:
See
TracBrowser
for help on using the repository browser.