00001 // ***************************************************************************** 00002 // 00003 // Copyright (c) 2014, Southwest Research Institute® (SwRI®) 00004 // All rights reserved. 00005 // 00006 // Redistribution and use in source and binary forms, with or without 00007 // modification, are permitted provided that the following conditions are met: 00008 // * Redistributions of source code must retain the above copyright 00009 // notice, this list of conditions and the following disclaimer. 00010 // * Redistributions in binary form must reproduce the above copyright 00011 // notice, this list of conditions and the following disclaimer in the 00012 // documentation and/or other materials provided with the distribution. 00013 // * Neither the name of Southwest Research Institute® (SwRI®) nor the 00014 // names of its contributors may be used to endorse or promote products 00015 // derived from this software without specific prior written permission. 00016 // 00017 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 00018 // AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 00019 // IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 00020 // ARE DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT HOLDER> BE LIABLE FOR ANY 00021 // DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES 00022 // (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; 00023 // LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND 00024 // ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 00025 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS 00026 // SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 00027 // 00028 // ***************************************************************************** 00029 00030 #ifndef MAPVIZ_PLUGINS_TEXTURED_MARKER_PLUGIN_H_ 00031 #define MAPVIZ_PLUGINS_TEXTURED_MARKER_PLUGIN_H_ 00032 00033 // C++ standard libraries 00034 #include <string> 00035 #include <list> 00036 #include <map> 00037 00038 #include <mapviz/mapviz_plugin.h> 00039 #include <GL/glut.h> 00040 00041 // QT libraries 00042 #include <QGLWidget> 00043 #include <QObject> 00044 #include <QWidget> 00045 #include <QColor> 00046 00047 #include <opencv2/core/core.hpp> 00048 00049 // ROS libraries 00050 #include <ros/ros.h> 00051 #include <tf/transform_datatypes.h> 00052 #include <marti_visualization_msgs/TexturedMarker.h> 00053 #include <marti_visualization_msgs/TexturedMarkerArray.h> 00054 00055 00056 #include <mapviz/map_canvas.h> 00057 00058 // QT autogenerated files 00059 #include "ui_marker_config.h" 00060 00061 Q_DECLARE_METATYPE(marti_visualization_msgs::TexturedMarkerConstPtr); 00062 Q_DECLARE_METATYPE(marti_visualization_msgs::TexturedMarkerArrayConstPtr); 00063 00064 namespace mapviz_plugins 00065 { 00066 class TexturedMarkerPlugin : public mapviz::MapvizPlugin 00067 { 00068 Q_OBJECT 00069 00070 public: 00071 TexturedMarkerPlugin(); 00072 virtual ~TexturedMarkerPlugin(); 00073 00074 bool Initialize(QGLWidget* canvas); 00075 void Shutdown() {} 00076 00077 void Draw(double x, double y, double scale); 00078 00079 void Transform(); 00080 00081 void LoadConfig(const YAML::Node& node, const std::string& path); 00082 void SaveConfig(YAML::Emitter& emitter, const std::string& path); 00083 00084 QWidget* GetConfigWidget(QWidget* parent); 00085 00086 Q_SIGNALS: 00087 void MarkerReceived(const marti_visualization_msgs::TexturedMarkerConstPtr marker); 00088 void MarkersReceived(const marti_visualization_msgs::TexturedMarkerArrayConstPtr markers); 00089 00090 protected: 00091 void PrintError(const std::string& message); 00092 void PrintInfo(const std::string& message); 00093 void PrintWarning(const std::string& message); 00094 00095 protected Q_SLOTS: 00096 void SelectTopic(); 00097 void TopicEdited(); 00098 void ProcessMarker(const marti_visualization_msgs::TexturedMarkerConstPtr marker); 00099 void ProcessMarkers(const marti_visualization_msgs::TexturedMarkerArrayConstPtr markers); 00100 00101 private: 00102 struct MarkerData 00103 { 00104 ros::Time stamp; 00105 ros::Time expire_time; 00106 00107 float alpha_; 00108 00109 std::vector<uint8_t> texture_; 00110 int32_t texture_id_; 00111 int32_t texture_size_; 00112 float texture_x_; 00113 float texture_y_; 00114 00115 std::string encoding_; 00116 00117 std::vector<tf::Vector3> quad_; 00118 std::vector<tf::Vector3> transformed_quad_; 00119 00120 std::string source_frame_; 00121 00122 bool transformed; 00123 }; 00124 00125 Ui::marker_config ui_; 00126 QWidget* config_widget_; 00127 00128 std::string topic_; 00129 00130 ros::Subscriber marker_sub_; 00131 bool has_message_; 00132 00133 std::map<std::string, std::map<int, MarkerData> > markers_; 00134 00135 bool is_marker_array_; 00136 00137 void ProcessMarker(const marti_visualization_msgs::TexturedMarker& marker); 00138 00139 void MarkerCallback(const marti_visualization_msgs::TexturedMarkerConstPtr marker); 00140 00141 void MarkerArrayCallback( 00142 const marti_visualization_msgs::TexturedMarkerArrayConstPtr markers); 00143 }; 00144 } 00145 00146 #endif // MAPVIZ_PLUGINS_TEXTURED_MARKER_PLUGIN_H_