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
rendering
CameraPrivate.hh
Go to the documentation of this file.
1
/*
2
* Copyright (C) 2012-2013 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
#ifndef _GAZEBO_RENDERING_CAMERA_PRIVATE_HH_
18
#define _GAZEBO_RENDERING_CAMERA_PRIVATE_HH_
19
20
#include <deque>
21
#include <utility>
22
#include <list>
23
24
#include "
gazebo/msgs/msgs.hh
"
25
#include "
gazebo/util/system.hh
"
26
27
namespace
Ogre
28
{
29
class
CompositorInstance;
30
}
31
32
namespace
gazebo
33
{
34
namespace
rendering
35
{
37
class
GAZEBO_VISIBLE
CameraPrivate
38
{
40
public
:
VisualPtr
trackedVisual
;
41
43
public
:
static
unsigned
int
cameraCounter
;
44
46
public
: Ogre::CompositorInstance *
dsGBufferInstance
;
47
49
public
: Ogre::CompositorInstance *
dsMergeInstance
;
50
52
public
: Ogre::CompositorInstance *
dlGBufferInstance
;
53
55
public
: Ogre::CompositorInstance *
dlMergeInstance
;
56
58
public
: Ogre::CompositorInstance *
ssaoInstance
;
59
61
public
: std::deque<std::pair<math::Pose, double> >
moveToPositionQueue
;
62
64
public
:
common::Time
renderPeriod
;
65
67
public
:
common::PID
trackVisualPID
;
68
70
public
:
common::PID
trackVisualPitchPID
;
71
73
public
:
common::PID
trackVisualYawPID
;
74
76
public
:
transport::NodePtr
node
;
77
79
public
:
transport::SubscriberPtr
cmdSub
;
80
83
typedef
std::list<boost::shared_ptr<msgs::CameraCmd const> >
84
CameraCmdMsgs_L
;
85
87
public
:
CameraCmdMsgs_L
commandMsgs
;
88
90
public
: boost::mutex
receiveMutex
;
91
};
92
}
93
}
94
#endif