Class
List
Hierarchy
Modules
Common
Events
Math
Messages
Physics
Rendering
Sensors
Transport
Links
Gazebo Website
Wiki
Tutorials
Download
Report Documentation Issues
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Groups
Pages
gazebo
sensors
MultiCameraSensor.hh
Go to the documentation of this file.
1
/*
2
* Copyright 2012 Open Source Robotics Foundation
3
*
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
* you may not use this file except in compliance with the License.
6
* You may obtain a copy of the License at
7
*
8
* http://www.apache.org/licenses/LICENSE-2.0
9
*
10
* Unless required by applicable law or agreed to in writing, software
11
* distributed under the License is distributed on an "AS IS" BASIS,
12
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
* See the License for the specific language governing permissions and
14
* limitations under the License.
15
*
16
*/
17
18
#ifndef _MULTICAMERASENSOR_HH_
19
#define _MULTICAMERASENSOR_HH_
20
21
#include <string>
22
#include <vector>
23
24
#include "
gazebo/sensors/Sensor.hh
"
25
#include "gazebo/msgs/MessageTypes.hh"
26
#include "
gazebo/transport/TransportTypes.hh
"
27
#include "
gazebo/rendering/RenderTypes.hh
"
28
29
namespace
gazebo
30
{
31
namespace
sensors
32
{
36
40
class
MultiCameraSensor
:
public
Sensor
41
{
43
public
:
MultiCameraSensor
();
44
46
public
:
virtual
~MultiCameraSensor
();
47
48
// Documentation inherited
49
public
:
virtual
void
Load
(
const
std::string &_worldName);
50
51
// Documentation inherited
52
public
:
virtual
void
Init
();
53
54
// Documentation inherited
55
public
:
virtual
std::string
GetTopic
()
const
;
56
59
public
:
unsigned
int
GetCameraCount
()
const
;
60
65
public
:
rendering::CameraPtr
GetCamera
(
unsigned
int
_index)
const
;
66
71
public
:
unsigned
int
GetImageWidth
(
unsigned
int
_index)
const
;
72
77
public
:
unsigned
int
GetImageHeight
(
unsigned
int
_index)
const
;
78
83
public
:
const
unsigned
char
*
GetImageData
(
unsigned
int
_index);
84
89
public
:
bool
SaveFrame
(
const
std::vector<std::string> &_filenames);
90
91
// Documentation inherited
92
protected
:
virtual
void
UpdateImpl
(
bool
_force);
93
94
// Documentation inherited
95
protected
:
virtual
void
Fini
();
96
98
private
: std::vector<rendering::CameraPtr> cameras;
99
101
private
:
transport::PublisherPtr
imagePub;
102
};
104
}
105
}
106
#endif