14#ifndef SEMANTIC_COMPONENTS__POSE_SENSOR_HPP_
15#define SEMANTIC_COMPONENTS__POSE_SENSOR_HPP_
22#include "geometry_msgs/msg/pose.hpp"
23#include "semantic_components/semantic_component_interface.hpp"
25namespace semantic_components
34 name, {{name +
'/' +
"position.x"},
35 {name +
'/' +
"position.y"},
36 {name +
'/' +
"position.z"},
37 {name +
'/' +
"orientation.x"},
38 {name +
'/' +
"orientation.y"},
39 {name +
'/' +
"orientation.z"},
40 {name +
'/' +
"orientation.w"}})
51 update_data_from_interfaces();
52 std::array<double, 3> position;
53 std::copy(data_.begin(), data_.begin() + 3, position.begin());
65 update_data_from_interfaces();
66 std::array<double, 4> orientation;
67 std::copy(data_.begin() + 3, data_.end(), orientation.begin());
77 update_data_from_interfaces();
79 message.position.x = data_[0];
80 message.position.y = data_[1];
81 message.position.z = data_[2];
82 message.orientation.x = data_[3];
83 message.orientation.y = data_[4];
84 message.orientation.z = data_[5];
85 message.orientation.w = data_[6];
97 void update_data_from_interfaces()
const
99 for (
auto i = 0u; i < data_.size(); ++i)
101 const auto data = state_interfaces_[i].get().get_optional();
102 if (data.has_value())
104 data_[i] = data.value();
110 mutable std::array<double, 7> data_{{0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0}};
Definition pose_sensor.hpp:29
std::array< double, 4 > get_orientation() const
Update and return orientation.
Definition pose_sensor.hpp:63
PoseSensor(const std::string &name)
Constructor for a standard pose sensor with interface names set based on sensor name.
Definition pose_sensor.hpp:32
std::array< double, 3 > get_position() const
Update and return position.
Definition pose_sensor.hpp:49
bool get_values_as_message(geometry_msgs::msg::Pose &message) const
Fill pose message with current values.
Definition pose_sensor.hpp:75
Definition semantic_component_interface.hpp:28