textured_marker_plugin.h
Go to the documentation of this file.
1 // *****************************************************************************
2 //
3 // Copyright (c) 2014, Southwest Research Institute® (SwRI®)
4 // All rights reserved.
5 //
6 // Redistribution and use in source and binary forms, with or without
7 // modification, are permitted provided that the following conditions are met:
8 // * Redistributions of source code must retain the above copyright
9 // notice, this list of conditions and the following disclaimer.
10 // * Redistributions in binary form must reproduce the above copyright
11 // notice, this list of conditions and the following disclaimer in the
12 // documentation and/or other materials provided with the distribution.
13 // * Neither the name of Southwest Research Institute® (SwRI®) nor the
14 // names of its contributors may be used to endorse or promote products
15 // derived from this software without specific prior written permission.
16 //
17 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
18 // AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19 // IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20 // ARE DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT HOLDER> BE LIABLE FOR ANY
21 // DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
22 // (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
23 // LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
24 // ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
26 // SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 //
28 // *****************************************************************************
29 
30 #ifndef MAPVIZ_PLUGINS_TEXTURED_MARKER_PLUGIN_H_
31 #define MAPVIZ_PLUGINS_TEXTURED_MARKER_PLUGIN_H_
32 
33 // C++ standard libraries
34 #include <string>
35 #include <list>
36 #include <map>
37 
38 #include <mapviz/mapviz_plugin.h>
39 
40 // QT libraries
41 #include <QGLWidget>
42 #include <QObject>
43 #include <QWidget>
44 #include <QColor>
45 
46 #include <opencv2/core/core.hpp>
47 
48 // ROS libraries
49 #include <ros/ros.h>
50 #include <tf/transform_datatypes.h>
51 #include <marti_visualization_msgs/TexturedMarker.h>
52 #include <marti_visualization_msgs/TexturedMarkerArray.h>
53 
54 
55 #include <mapviz/map_canvas.h>
56 
57 // QT autogenerated files
58 #include "ui_marker_config.h"
59 
60 Q_DECLARE_METATYPE(marti_visualization_msgs::TexturedMarkerConstPtr);
61 Q_DECLARE_METATYPE(marti_visualization_msgs::TexturedMarkerArrayConstPtr);
62 
63 namespace mapviz_plugins
64 {
66  {
67  Q_OBJECT
68 
69  public:
71  virtual ~TexturedMarkerPlugin();
72 
73  bool Initialize(QGLWidget* canvas);
74  void Shutdown() {}
75 
76  void ClearHistory();
77 
78  void Draw(double x, double y, double scale);
79 
80  void Transform();
81 
82  void LoadConfig(const YAML::Node& node, const std::string& path);
83  void SaveConfig(YAML::Emitter& emitter, const std::string& path);
84 
85  QWidget* GetConfigWidget(QWidget* parent);
86 
87  Q_SIGNALS:
88  void MarkerReceived(const marti_visualization_msgs::TexturedMarkerConstPtr marker);
89  void MarkersReceived(const marti_visualization_msgs::TexturedMarkerArrayConstPtr markers);
90 
91  protected:
92  void PrintError(const std::string& message);
93  void PrintInfo(const std::string& message);
94  void PrintWarning(const std::string& message);
95 
96  protected Q_SLOTS:
97  void SelectTopic();
98  void TopicEdited();
99  void ProcessMarker(const marti_visualization_msgs::TexturedMarkerConstPtr marker);
100  void ProcessMarkers(const marti_visualization_msgs::TexturedMarkerArrayConstPtr markers);
101 
102  private:
103  struct MarkerData
104  {
107 
108  float alpha_;
109 
110  std::vector<uint8_t> texture_;
111  int32_t texture_id_;
112  int32_t texture_size_;
113  float texture_x_;
114  float texture_y_;
115 
116  std::string encoding_;
117 
118  std::vector<tf::Vector3> quad_;
119  std::vector<tf::Vector3> transformed_quad_;
120 
121  std::string source_frame_;
122 
124  };
125 
126  Ui::marker_config ui_;
127  QWidget* config_widget_;
128 
129  std::string topic_;
130 
133 
134  std::map<std::string, std::map<int, MarkerData> > markers_;
135 
137 
138  void ProcessMarker(const marti_visualization_msgs::TexturedMarker& marker);
139 
140  void MarkerCallback(const marti_visualization_msgs::TexturedMarkerConstPtr marker);
141 
142  void MarkerArrayCallback(
143  const marti_visualization_msgs::TexturedMarkerArrayConstPtr markers);
144  };
145 }
146 
147 #endif // MAPVIZ_PLUGINS_TEXTURED_MARKER_PLUGIN_H_
void MarkersReceived(const marti_visualization_msgs::TexturedMarkerArrayConstPtr markers)
void PrintInfo(const std::string &message)
void MarkerArrayCallback(const marti_visualization_msgs::TexturedMarkerArrayConstPtr markers)
void ProcessMarkers(const marti_visualization_msgs::TexturedMarkerArrayConstPtr markers)
void LoadConfig(const YAML::Node &node, const std::string &path)
TFSIMD_FORCE_INLINE const tfScalar & y() const
void PrintError(const std::string &message)
std::map< std::string, std::map< int, MarkerData > > markers_
void MarkerCallback(const marti_visualization_msgs::TexturedMarkerConstPtr marker)
void PrintWarning(const std::string &message)
void MarkerReceived(const marti_visualization_msgs::TexturedMarkerConstPtr marker)
TFSIMD_FORCE_INLINE const tfScalar & x() const
void SaveConfig(YAML::Emitter &emitter, const std::string &path)
Q_DECLARE_METATYPE(marti_visualization_msgs::TexturedMarkerConstPtr)
void ProcessMarker(const marti_visualization_msgs::TexturedMarkerConstPtr marker)
void Draw(double x, double y, double scale)


mapviz_plugins
Author(s): Marc Alban
autogenerated on Thu Jun 6 2019 19:25:16