LogicalCameraSensorPrivate.hh
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2015 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_LOGICAL_CAMERASENSOR_PRIVATE_HH_
18 #define _GAZEBO_LOGICAL_CAMERASENSOR_PRIVATE_HH_
19 
20 #include <string>
21 #include <ignition/math/Frustum.hh>
23 #include "gazebo/msgs/msgs.hh"
24 #include "gazebo/physics/Link.hh"
25 
26 namespace gazebo
27 {
28  namespace sensors
29  {
33  {
36 
38  public: ignition::math::Frustum frustum;
39 
42 
44  public: msgs::LogicalCameraImage msg;
45 
47  public: std::mutex mutex;
48 
50  public: std::string modelName;
51  };
52  }
53 }
54 #endif
std::string modelName
Name of the parent model.
Definition: LogicalCameraSensorPrivate.hh:50
Forward declarations for transport.
Definition: LogicalCameraSensorPrivate.hh:32
physics::LinkPtr parentLink
Pointer to the parent link.
Definition: LogicalCameraSensorPrivate.hh:41
msgs::LogicalCameraImage msg
Used to store and report the detected models.
Definition: LogicalCameraSensorPrivate.hh:44
transport::PublisherPtr pub
Publisher of msgs::LogicalCameraImage messages.
Definition: LogicalCameraSensorPrivate.hh:35
std::mutex mutex
Mutex to protect the msg.
Definition: LogicalCameraSensorPrivate.hh:47
ignition::math::Frustum frustum
Camera frustum.
Definition: LogicalCameraSensorPrivate.hh:38
boost::shared_ptr< Publisher > PublisherPtr
Definition: TransportTypes.hh:49
boost::shared_ptr< Link > LinkPtr
Definition: PhysicsTypes.hh:92