[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 Camera.h
|
---|
| 7 | * \brief Base class for Camera
|
---|
| 8 | * \author Guillaume Sanahuja, Copyright Heudiasyc UMR UTC/CNRS 7253
|
---|
| 9 | * \date 2014/03/06
|
---|
| 10 | * \version 4.0
|
---|
| 11 | */
|
---|
| 12 |
|
---|
| 13 | #ifndef CAMERA_H
|
---|
| 14 | #define CAMERA_H
|
---|
| 15 |
|
---|
| 16 | #include <IODevice.h>
|
---|
| 17 | #include <stdint.h>
|
---|
| 18 | #include <cvimage.h>
|
---|
| 19 |
|
---|
[13] | 20 | namespace flair {
|
---|
| 21 | namespace gui {
|
---|
| 22 | class GroupBox;
|
---|
| 23 | class Tab;
|
---|
| 24 | class TabWidget;
|
---|
| 25 | class Picture;
|
---|
| 26 | class GridLayout;
|
---|
[4] | 27 | }
|
---|
[13] | 28 | }
|
---|
[4] | 29 |
|
---|
[13] | 30 | namespace flair {
|
---|
| 31 | namespace sensor {
|
---|
| 32 | /*! \class Camera
|
---|
| 33 | *
|
---|
| 34 | * \brief Base class for Camera
|
---|
| 35 | *
|
---|
| 36 | * Use this class to define a custom Camera.
|
---|
| 37 | *
|
---|
| 38 | */
|
---|
| 39 | class Camera : public core::IODevice {
|
---|
| 40 | public:
|
---|
| 41 | /*!
|
---|
| 42 | * \brief Constructor
|
---|
| 43 | *
|
---|
| 44 | * Construct a Camera.
|
---|
| 45 | *
|
---|
| 46 | * \param parent parent
|
---|
| 47 | * \param name name
|
---|
| 48 | * \param width width
|
---|
| 49 | * \param height height
|
---|
| 50 | * \param format image format
|
---|
| 51 | */
|
---|
| 52 | Camera(const core::FrameworkManager *parent, std::string name, uint16_t width,
|
---|
| 53 | uint16_t height, core::cvimage::Type::Format format);
|
---|
[4] | 54 |
|
---|
[13] | 55 | /*!
|
---|
| 56 | * \brief Constructor
|
---|
| 57 | *
|
---|
| 58 | * Construct a Camera. \n
|
---|
| 59 | * This contructor must only be called for a simulated device.
|
---|
| 60 | *
|
---|
| 61 | * \param parent parent
|
---|
| 62 | * \param name name
|
---|
| 63 | */
|
---|
| 64 | Camera(const core::IODevice *parent, std::string name);
|
---|
[4] | 65 |
|
---|
[13] | 66 | /*!
|
---|
| 67 | * \brief Destructor
|
---|
| 68 | *
|
---|
| 69 | */
|
---|
| 70 | ~Camera();
|
---|
[4] | 71 |
|
---|
[13] | 72 | /*!
|
---|
| 73 | * \brief Use default plot
|
---|
| 74 | *
|
---|
| 75 | * \param image image to display
|
---|
| 76 | */
|
---|
| 77 | void UseDefaultPlot(const core::cvimage *image);
|
---|
[4] | 78 |
|
---|
[13] | 79 | /*!
|
---|
| 80 | * \brief get Layout
|
---|
| 81 | *
|
---|
| 82 | * \return a Layout available
|
---|
| 83 | */
|
---|
| 84 | gui::GridLayout *GetLayout(void) const;
|
---|
[4] | 85 |
|
---|
[13] | 86 | /*!
|
---|
| 87 | * \brief plot tab
|
---|
| 88 | *
|
---|
| 89 | * \return plot tab
|
---|
| 90 | */
|
---|
| 91 | gui::Tab *GetPlotTab(void) const;
|
---|
[4] | 92 |
|
---|
[13] | 93 | /*!
|
---|
| 94 | * \brief Save picture to file
|
---|
| 95 | *
|
---|
| 96 | * \param filename filename
|
---|
| 97 | */
|
---|
| 98 | void SaveToFile(std::string filename) const;
|
---|
[4] | 99 |
|
---|
[13] | 100 | /*!
|
---|
| 101 | * \brief Width
|
---|
| 102 | *
|
---|
| 103 | * \return width
|
---|
| 104 | */
|
---|
| 105 | uint16_t Width(void) const;
|
---|
[4] | 106 |
|
---|
[13] | 107 | /*!
|
---|
| 108 | * \brief Height
|
---|
| 109 | *
|
---|
| 110 | * \return height
|
---|
| 111 | */
|
---|
| 112 | uint16_t Height(void) const;
|
---|
[4] | 113 |
|
---|
[13] | 114 | /*!
|
---|
| 115 | * \brief Output matrix
|
---|
| 116 | *
|
---|
| 117 | * Output matrix is of the same size as declared in constructor. \n
|
---|
| 118 | *
|
---|
| 119 | * \return the output matrix
|
---|
| 120 | */
|
---|
| 121 | core::cvimage *Output(void);
|
---|
[4] | 122 |
|
---|
[13] | 123 | core::DataType const &GetOutputDataType() const;
|
---|
[4] | 124 |
|
---|
[13] | 125 | protected:
|
---|
| 126 | /*!
|
---|
| 127 | * \brief get GroupBox
|
---|
| 128 | *
|
---|
| 129 | * \return a GroupBox available
|
---|
| 130 | */
|
---|
| 131 | gui::GroupBox *GetGroupBox(void) const;
|
---|
[4] | 132 |
|
---|
[13] | 133 | core::cvimage *output;
|
---|
[4] | 134 |
|
---|
[13] | 135 | private:
|
---|
| 136 | gui::Tab *main_tab, *sensor_tab, *plot_tab;
|
---|
| 137 | gui::TabWidget *tab;
|
---|
| 138 | gui::GroupBox *setup_groupbox;
|
---|
| 139 | gui::GridLayout *setup_layout;
|
---|
| 140 | };
|
---|
[4] | 141 | } // end namespace sensor
|
---|
| 142 | } // end namespace flair
|
---|
| 143 | #endif // CAMERA_H
|
---|