source: flair-src/trunk/lib/FlairSensorActuator/src/SimuCamera.h@ 262

Last change on this file since 262 was 224, checked in by Sanahuja Guillaume, 6 years ago

maj for armv5te

File size: 1.7 KB
RevLine 
[3]1// %flair:license{
[15]2// This file is part of the Flair framework distributed under the
3// CECILL-C License, Version 1.0.
[3]4// %flair:license}
5/*!
6 * \file SimuCamera.h
7 * \brief Class for a simulation camera
8 * \author Guillaume Sanahuja, Copyright Heudiasyc UMR UTC/CNRS 7253
9 * \date 2014/03/06
10 * \version 4.0
11 */
12
13#ifndef SIMUCAMERA_H
14#define SIMUCAMERA_H
15
16#include <Camera.h>
17#include <Thread.h>
18#include <cxcore.h>
19
[15]20namespace flair {
[144]21 namespace core {
22 class SharedMem;
23 }
[3]24}
25
[15]26namespace flair {
27namespace sensor {
28/*! \class SimuCamera
29*
30* \brief Class for a simulation camera
31*/
32class SimuCamera : public core::Thread, public Camera {
33public:
34 /*!
35 * \brief Constructor
36 *
[224]37 * Construct a SimuCamera.
[137]38 * It will be child of the FrameworkManager.
[15]39 *
40 * \param name name
41 * \param width width
42 * \param height height
43 * \param channels number of channels
[158]44 * \param modelId Model id
45 * \param deviceId Camera id of the Model
[15]46 * \param priority priority of the Thread
47 */
[137]48 SimuCamera(std::string name,
[158]49 uint16_t width, uint16_t height, uint8_t channels, uint32_t modelId,uint32_t deviceId,
[15]50 uint8_t priority);
[3]51
52
[15]53 /*!
54 * \brief Destructor
55 *
56 */
57 ~SimuCamera();
[3]58
[15]59protected:
60 /*!
61 * \brief SharedMem to access datas
62 *
63 */
64 core::SharedMem *shmem;
[3]65
[15]66private:
67 /*!
68 * \brief Run function
69 *
70 * Reimplemented from Thread.
71 *
72 */
73 void Run(void);
[3]74
[15]75 /*!
76 * \brief Update using provided datas
77 *
78 * Reimplemented from IODevice.
79 *
80 * \param data data from the parent to process
81 */
82 void UpdateFrom(const core::io_data *data){};
[158]83
84 std::string ShMemName(uint32_t modelId,uint32_t deviceId);
[3]85
[15]86 size_t buf_size;
[151]87 char* shmemReadBuf;
[15]88};
[3]89} // end namespace sensor
90} // end namespace flair
91#endif // SIMUCAMERA_H
Note: See TracBrowser for help on using the repository browser.