Public Member Functions | Protected Member Functions | Protected Attributes | List of all members
gazebo::sensors::Sensor Class Reference

Base class for sensors. More...

#include <sensors/sensors.hh>

Inheritance diagram for gazebo::sensors::Sensor:
Inheritance graph
[legend]

Public Member Functions

 Sensor (SensorCategory _cat)
 Constructor. More...
 
virtual ~Sensor ()
 Destructor. More...
 
SensorCategory Category () const
 Get the category of the sensor. More...
 
event::ConnectionPtr ConnectUpdated (std::function< void()> _subscriber)
 Connect a signal that is triggered when the sensor is updated. More...
 
void DisconnectUpdated (event::ConnectionPtr &_c)
 Disconnect from a the updated signal. More...
 
void FillMsg (msgs::Sensor &_msg)
 fills a msgs::Sensor message. More...
 
virtual void Fini ()
 Finalize the sensor. More...
 
SensorCategory GetCategory () const GAZEBO_DEPRECATED(7.0)
 Get the category of the sensor. More...
 
uint32_t GetId () const GAZEBO_DEPRECATED(7.0)
 Get the sensor's ID. More...
 
common::Time GetLastMeasurementTime () GAZEBO_DEPRECATED(7.0)
 Return last measurement time. More...
 
common::Time GetLastUpdateTime () GAZEBO_DEPRECATED(7.0)
 Return last update time. More...
 
std::string GetName () const GAZEBO_DEPRECATED(7.0)
 Get name. More...
 
NoisePtr GetNoise (const SensorNoiseType _type) const GAZEBO_DEPRECATED(7.0)
 Get the sensor's noise model for a specified noise type. More...
 
uint32_t GetParentId () const GAZEBO_DEPRECATED(7.0)
 Get the sensor's parent's ID. More...
 
std::string GetParentName () const GAZEBO_DEPRECATED(7.0)
 Returns the name of the sensor parent. More...
 
std::string GetScopedName () const GAZEBO_DEPRECATED(7.0)
 Get fully scoped name of the sensor. More...
 
virtual std::string GetTopic () const GAZEBO_DEPRECATED(7.0)
 Returns the topic name as set in SDF. More...
 
std::string GetType () const GAZEBO_DEPRECATED(7.0)
 Get sensor type. More...
 
double GetUpdateRate () GAZEBO_DEPRECATED(7.0)
 Get the update rate of the sensor. More...
 
bool GetVisualize () const GAZEBO_DEPRECATED(7.0)
 Return true if user requests the sensor to be visualized via tag: <visualize>true</visualize> in SDF. More...
 
std::string GetWorldName () const GAZEBO_DEPRECATED(7.0)
 Returns the name of the world the sensor is in. More...
 
uint32_t Id () const
 Get the sensor's ID. More...
 
virtual void Init ()
 Initialize the sensor. More...
 
virtual bool IsActive () const
 Returns true if sensor generation is active. More...
 
common::Time LastMeasurementTime () const
 Return last measurement time. More...
 
common::Time LastUpdateTime () const
 Return last update time. More...
 
virtual void Load (const std::string &_worldName, sdf::ElementPtr _sdf)
 Load the sensor with SDF parameters. More...
 
virtual void Load (const std::string &_worldName)
 Load the sensor with default parameters. More...
 
std::string Name () const
 Get name. More...
 
NoisePtr Noise (const SensorNoiseType _type) const
 Get the sensor's noise model for a specified noise type. More...
 
uint32_t ParentId () const
 Get the sensor's parent's ID. More...
 
std::string ParentName () const
 Returns the name of the sensor parent. More...
 
virtual ignition::math::Pose3d Pose () const
 Get the current pose. More...
 
void ResetLastUpdateTime ()
 Reset the lastUpdateTime to zero. More...
 
std::string ScopedName () const
 Get fully scoped name of the sensor. More...
 
virtual void SetActive (const bool _value)
 Set whether the sensor is active or not. More...
 
void SetParent (const std::string &_name, const uint32_t _id)
 Set the sensor's parent. More...
 
virtual void SetPose (const ignition::math::Pose3d &_pose)
 Set the current pose. More...
 
void SetUpdateRate (const double _hz)
 Set the update rate of the sensor. More...
 
virtual std::string Topic () const
 Returns the topic name as set in SDF. More...
 
std::string Type () const
 Get sensor type. More...
 
void Update (const bool _force)
 Update the sensor. More...
 
double UpdateRate () const
 Get the update rate of the sensor. More...
 
bool Visualize () const
 Return true if user requests the sensor to be visualized via tag: <visualize>true</visualize> in SDF. More...
 
std::string WorldName () const
 Returns the name of the world the sensor is in. More...
 

Protected Member Functions

bool NeedsUpdate ()
 Return true if the sensor needs to be updated. More...
 
virtual bool UpdateImpl (const bool)
 This gets overwritten by derived sensor types. More...
 

Protected Attributes

bool active
 True if sensor generation is active. More...
 
std::vector< event::ConnectionPtrconnections
 All event connections. More...
 
common::Time lastMeasurementTime
 Stores last time that a sensor measurement was generated; this value must be updated within each sensor's UpdateImpl. More...
 
common::Time lastUpdateTime
 Time of the last update. More...
 
transport::NodePtr node
 Node for communication. More...
 
std::map< SensorNoiseType,
NoisePtr
noises
 Noise added to sensor data. More...
 
uint32_t parentId
 The sensor's parent ID. More...
 
std::string parentName
 Name of the parent. More...
 
std::vector< SensorPluginPtrplugins
 All the plugins for the sensor. More...
 
ignition::math::Pose3d pose
 Pose of the sensor. More...
 
gazebo::rendering::ScenePtr scene
 Pointer to the Scene. More...
 
sdf::ElementPtr sdf
 Pointer the the SDF element for the sensor. More...
 
common::Time updatePeriod
 Desired time between updates, set indirectly by Sensor::SetUpdateRate. More...
 
gazebo::physics::WorldPtr world
 Pointer to the world. More...
 

Detailed Description

Base class for sensors.

Constructor & Destructor Documentation

gazebo::sensors::Sensor::Sensor ( SensorCategory  _cat)
explicit

Constructor.

Parameters
[in]_catCategory of the sensor
virtual gazebo::sensors::Sensor::~Sensor ( )
virtual

Destructor.

Member Function Documentation

SensorCategory gazebo::sensors::Sensor::Category ( ) const

Get the category of the sensor.

Returns
The category of the sensor.
See Also
SensorCategory
event::ConnectionPtr gazebo::sensors::Sensor::ConnectUpdated ( std::function< void()>  _subscriber)

Connect a signal that is triggered when the sensor is updated.

Parameters
[in]_subscriberCallback that receives the signal.
Returns
A pointer to the connection. This must be kept in scope.
See Also
Sensor::DisconnectUpdated
void gazebo::sensors::Sensor::DisconnectUpdated ( event::ConnectionPtr _c)

Disconnect from a the updated signal.

Parameters
[in]_cThe connection to disconnect
See Also
Sensor::ConnectUpdated
void gazebo::sensors::Sensor::FillMsg ( msgs::Sensor &  _msg)

fills a msgs::Sensor message.

Parameters
[out]_msgMessage to fill.
virtual void gazebo::sensors::Sensor::Fini ( )
virtual
SensorCategory gazebo::sensors::Sensor::GetCategory ( ) const

Get the category of the sensor.

Returns
The category of the sensor.
See Also
SensorCategory
Deprecated:
See Category() function.
uint32_t gazebo::sensors::Sensor::GetId ( ) const

Get the sensor's ID.

Returns
The sensor's ID.
Deprecated:
See Id() function
common::Time gazebo::sensors::Sensor::GetLastMeasurementTime ( )

Return last measurement time.

Returns
Time of last measurement.
Deprecated:
See LastMeasurementTime() function.
common::Time gazebo::sensors::Sensor::GetLastUpdateTime ( )

Return last update time.

Returns
Time of last update.
Deprecated:
See LastUpdateTime() function
std::string gazebo::sensors::Sensor::GetName ( ) const

Get name.

Returns
Name of sensor.
Deprecated:
See Name() function.
NoisePtr gazebo::sensors::Sensor::GetNoise ( const SensorNoiseType  _type) const

Get the sensor's noise model for a specified noise type.

Parameters
[in]_typeIndex of the noise type. Refer to SensorNoiseType enumeration for possible indices
Returns
The sensor's noise model for the given noise type
Deprecated:
See Noise(const SensorNoiseType _type) function
uint32_t gazebo::sensors::Sensor::GetParentId ( ) const

Get the sensor's parent's ID.

Returns
The sensor's parent's ID.
Deprecated:
See ParentId() function
std::string gazebo::sensors::Sensor::GetParentName ( ) const

Returns the name of the sensor parent.

The parent name is set by Sensor::SetParent.

Returns
Name of Parent.
Deprecated:
See ParentName() function.
std::string gazebo::sensors::Sensor::GetScopedName ( ) const

Get fully scoped name of the sensor.

Returns
world_name::model_name::link_name::sensor_name.
Deprecated:
See ScopedName() function
virtual std::string gazebo::sensors::Sensor::GetTopic ( ) const
virtual

Returns the topic name as set in SDF.

Returns
Topic name.
Deprecated:
See Topic() function.

Reimplemented in gazebo::sensors::AltimeterSensor, gazebo::sensors::LogicalCameraSensor, and gazebo::sensors::MagnetometerSensor.

std::string gazebo::sensors::Sensor::GetType ( ) const

Get sensor type.

Returns
Type of sensor.
Deprecated:
See Type() function.
double gazebo::sensors::Sensor::GetUpdateRate ( )

Get the update rate of the sensor.

Returns
_hz update rate of sensor. Returns 0 if unthrottled.
Deprecated:
See UpdateRate() function
bool gazebo::sensors::Sensor::GetVisualize ( ) const

Return true if user requests the sensor to be visualized via tag: <visualize>true</visualize> in SDF.

Returns
True if visualized, false if not.
Deprecated:
See Visualize() function
std::string gazebo::sensors::Sensor::GetWorldName ( ) const

Returns the name of the world the sensor is in.

Returns
Name of the world.
Deprecated:
See WorldName() function.
uint32_t gazebo::sensors::Sensor::Id ( ) const

Get the sensor's ID.

Returns
The sensor's ID.
virtual void gazebo::sensors::Sensor::Init ( )
virtual
virtual bool gazebo::sensors::Sensor::IsActive ( ) const
virtual
common::Time gazebo::sensors::Sensor::LastMeasurementTime ( ) const

Return last measurement time.

Returns
Time of last measurement.
Deprecated:
See LastMeasurementTime() function.
common::Time gazebo::sensors::Sensor::LastUpdateTime ( ) const

Return last update time.

Returns
Time of last update.
virtual void gazebo::sensors::Sensor::Load ( const std::string &  _worldName,
sdf::ElementPtr  _sdf 
)
virtual
virtual void gazebo::sensors::Sensor::Load ( const std::string &  _worldName)
virtual
std::string gazebo::sensors::Sensor::Name ( ) const

Get name.

Returns
Name of sensor.
bool gazebo::sensors::Sensor::NeedsUpdate ( )
protected

Return true if the sensor needs to be updated.

Returns
True when sensor should be updated.
NoisePtr gazebo::sensors::Sensor::Noise ( const SensorNoiseType  _type) const

Get the sensor's noise model for a specified noise type.

Parameters
[in]_typeIndex of the noise type. Refer to SensorNoiseType enumeration for possible indices
Returns
The sensor's noise model for the given noise type
uint32_t gazebo::sensors::Sensor::ParentId ( ) const

Get the sensor's parent's ID.

Returns
The sensor's parent's ID.
std::string gazebo::sensors::Sensor::ParentName ( ) const

Returns the name of the sensor parent.

The parent name is set by Sensor::SetParent.

Returns
Name of Parent.
virtual ignition::math::Pose3d gazebo::sensors::Sensor::Pose ( ) const
virtual

Get the current pose.

Returns
Current pose of the sensor.
See Also
SetPose()
void gazebo::sensors::Sensor::ResetLastUpdateTime ( )

Reset the lastUpdateTime to zero.

std::string gazebo::sensors::Sensor::ScopedName ( ) const

Get fully scoped name of the sensor.

Returns
world_name::model_name::link_name::sensor_name.
virtual void gazebo::sensors::Sensor::SetActive ( const bool  _value)
virtual

Set whether the sensor is active or not.

Parameters
[in]_valueTrue if active, false if not.

Reimplemented in gazebo::sensors::DepthCameraSensor.

void gazebo::sensors::Sensor::SetParent ( const std::string &  _name,
const uint32_t  _id 
)

Set the sensor's parent.

Parameters
[in]_nameThe sensor's parent's name.
[in]_idThe sensor's parent's ID.
virtual void gazebo::sensors::Sensor::SetPose ( const ignition::math::Pose3d &  _pose)
virtual

Set the current pose.

Parameters
[in]_poseNew pose of the sensor.
See Also
Pose()
void gazebo::sensors::Sensor::SetUpdateRate ( const double  _hz)

Set the update rate of the sensor.

Parameters
[in]_hzupdate rate of sensor.
virtual std::string gazebo::sensors::Sensor::Topic ( ) const
virtual
std::string gazebo::sensors::Sensor::Type ( ) const

Get sensor type.

Returns
Type of sensor.
void gazebo::sensors::Sensor::Update ( const bool  _force)

Update the sensor.

Parameters
[in]_forceTrue to force update, false otherwise.
virtual bool gazebo::sensors::Sensor::UpdateImpl ( const bool  )
inlineprotectedvirtual
double gazebo::sensors::Sensor::UpdateRate ( ) const

Get the update rate of the sensor.

Returns
_hz update rate of sensor. Returns 0 if unthrottled.
bool gazebo::sensors::Sensor::Visualize ( ) const

Return true if user requests the sensor to be visualized via tag: <visualize>true</visualize> in SDF.

Returns
True if visualized, false if not.
std::string gazebo::sensors::Sensor::WorldName ( ) const

Returns the name of the world the sensor is in.

Returns
Name of the world.

Member Data Documentation

bool gazebo::sensors::Sensor::active
protected

True if sensor generation is active.

std::vector<event::ConnectionPtr> gazebo::sensors::Sensor::connections
protected

All event connections.

common::Time gazebo::sensors::Sensor::lastMeasurementTime
protected

Stores last time that a sensor measurement was generated; this value must be updated within each sensor's UpdateImpl.

common::Time gazebo::sensors::Sensor::lastUpdateTime
protected

Time of the last update.

transport::NodePtr gazebo::sensors::Sensor::node
protected

Node for communication.

std::map<SensorNoiseType, NoisePtr> gazebo::sensors::Sensor::noises
protected

Noise added to sensor data.

uint32_t gazebo::sensors::Sensor::parentId
protected

The sensor's parent ID.

std::string gazebo::sensors::Sensor::parentName
protected

Name of the parent.

std::vector<SensorPluginPtr> gazebo::sensors::Sensor::plugins
protected

All the plugins for the sensor.

ignition::math::Pose3d gazebo::sensors::Sensor::pose
protected

Pose of the sensor.

gazebo::rendering::ScenePtr gazebo::sensors::Sensor::scene
protected

Pointer to the Scene.

sdf::ElementPtr gazebo::sensors::Sensor::sdf
protected

Pointer the the SDF element for the sensor.

common::Time gazebo::sensors::Sensor::updatePeriod
protected

Desired time between updates, set indirectly by Sensor::SetUpdateRate.

gazebo::physics::WorldPtr gazebo::sensors::Sensor::world
protected

Pointer to the world.


The documentation for this class was generated from the following file: