Gazebo Sim

API Reference

9.0.0~pre1
Visualization.hh
Go to the documentation of this file.
1/*
2 * Copyright (C) 2020 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
18#ifndef GZ_SIM_SYSTEMS_OPTICAL_TACTILE_PLUGIN_VISUALIZATION_HH_
19#define GZ_SIM_SYSTEMS_OPTICAL_TACTILE_PLUGIN_VISUALIZATION_HH_
20
21#include <memory>
22#include <string>
23
24#include <gz/sim/config.hh>
25#include <gz/sim/System.hh>
26#include <gz/msgs/marker.pb.h>
27
29
30namespace gz
31{
32namespace sim
33{
34// Inline bracket to help doxygen filtering.
35inline namespace GZ_SIM_VERSION_NAMESPACE {
36namespace systems
37{
38namespace optical_tactile_sensor
39{
40 // This class handles the configuration and process of visualizing the
41 // different elements needed for the Optical Tactile Sensor plugin.
42 // Terminology:
43 // "Contacts" refers to data from the contact sensor based on physics.
44 // "Normal forces" refers to post-processed data from the depth camera based
45 // purely on imagery.
46 // These two sets of data are currently disjoint and visualized separately.
48 {
56 std::string &_modelName,
57 gz::math::Vector3d &_sensorSize,
58 double &_forceLength,
59 float &_cameraUpdateRate,
60 gz::math::Pose3f &_depthCameraOffset);
61
65 private: void InitializeSensorMarkerMsg(
66 gz::msgs::Marker &_sensorMarkerMsg);
67
73 gz::math::Pose3f const &_sensorPose);
74
78 private: void InitializeContactsMarkerMsg(
79 gz::msgs::Marker &_contactsMarkerMsg);
80
86 gz::msgs::Contact const &_contact,
87 gz::msgs::Marker &_contactsMarkerMsg);
88
92 components::ContactSensorData const *_contacts);
93
99 private: void InitializeNormalForcesMarkerMsgs(
100 gz::msgs::Marker &_positionMarkerMsg,
101 gz::msgs::Marker &_forceMarkerMsg);
102
116 gz::msgs::Marker &_positionMarkerMsg,
117 gz::msgs::Marker &_forceMarkerMsg,
118 gz::math::Vector3f &_position,
119 gz::math::Vector3f &_normalForce,
120 gz::math::Pose3f &_sensorWorldPose);
121
129 gz::msgs::Marker &_positionMarkerMsg,
130 gz::msgs::Marker &_forceMarkerMsg);
131
134
136 private: gz::transport::Node node;
137
139 private: std::string modelName;
140
142 private: gz::math::Vector3d sensorSize;
143
145 private: double forceLength;
146
148 private: float cameraUpdateRate;
149
151 private: gz::math::Pose3f depthCameraOffset;
152
154 private: bool normalForcesMsgsAreInitialized{false};
155 };
156} // namespace optical_tactile_sensor
157} // namespace systems
158} // namespace GZ_SIM_VERSION_NAMESPACE
159} // namespace sim
160} // namespace gz
161
162#endif