DepthCameraSensor.hh
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2012-2016 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_SENSORS_DEPTHCAMERASENSOR_HH_
18 #define _GAZEBO_SENSORS_DEPTHCAMERASENSOR_HH_
19 
20 #include <memory>
21 #include <string>
22 
23 #include "gazebo/msgs/MessageTypes.hh"
25 #include "gazebo/sensors/Sensor.hh"
26 #include "gazebo/util/system.hh"
27 
28 namespace gazebo
29 {
32  namespace sensors
33  {
34  // Forward declare private data class
35  class DepthCameraSensorPrivate;
36 
44  {
46  public: DepthCameraSensor();
47 
49  public: virtual ~DepthCameraSensor();
50 
54  protected: virtual void Load(const std::string &_worldName,
55  sdf::ElementPtr _sdf);
56 
59  protected: virtual void Load(const std::string &_worldName);
60 
62  protected: virtual void Init();
63 
64  // Documentation inherited
65  protected: virtual bool UpdateImpl(const bool _force);
66 
68  protected: virtual void Fini();
69 
72  public: virtual void SetActive(const bool _value);
73 
77  public: rendering::DepthCameraPtr GetDepthCamera() const
78  GAZEBO_DEPRECATED(7.0);
79 
82  public: rendering::DepthCameraPtr DepthCamera() const;
83 
87  public: bool SaveFrame(const std::string &_filename);
88 
90  private: void Render();
91 
94  private: std::unique_ptr<DepthCameraSensorPrivate> dataPtr;
95  };
97  }
98 }
99 #endif
Forward declarations for the common classes.
Definition: Animation.hh:33
Definition: DepthCameraSensor.hh:43
#define GAZEBO_DEPRECATED(version)
Definition: CommonTypes.hh:48
boost::shared_ptr< DepthCamera > DepthCameraPtr
Definition: RenderTypes.hh:96
GAZEBO_VISIBLE void Init(google::protobuf::Message &_message, const std::string &_id="")
Initialize a message.
Base class for sensors.
Definition: Sensor.hh:50
#define GAZEBO_VISIBLE
Use to represent "symbol visible" if supported.
Definition: system.hh:59