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 00040 // QT libraries 00041 #include <QGLWidget> 00042 #include <QObject> 00043 #include <QWidget> 00044 #include <QColor> 00045 00046 #include <opencv2/core/core.hpp> 00047 00048 // ROS libraries 00049 #include <ros/ros.h> 00050 #include <tf/transform_datatypes.h> 00051 #include <marti_visualization_msgs/TexturedMarker.h> 00052 #include <marti_visualization_msgs/TexturedMarkerArray.h> 00053 00054 00055 #include <mapviz/map_canvas.h> 00056 00057 // QT autogenerated files 00058 #include "ui_marker_config.h" 00059 00060 Q_DECLARE_METATYPE(marti_visualization_msgs::TexturedMarkerConstPtr); 00061 Q_DECLARE_METATYPE(marti_visualization_msgs::TexturedMarkerArrayConstPtr); 00062 00063 namespace mapviz_plugins 00064 { 00065 class TexturedMarkerPlugin : public mapviz::MapvizPlugin 00066 { 00067 Q_OBJECT 00068 00069 public: 00070 TexturedMarkerPlugin(); 00071 virtual ~TexturedMarkerPlugin(); 00072 00073 bool Initialize(QGLWidget* canvas); 00074 void Shutdown() {} 00075 00076 void ClearHistory(); 00077 00078 void Draw(double x, double y, double scale); 00079 00080 void Transform(); 00081 00082 void LoadConfig(const YAML::Node& node, const std::string& path); 00083 void SaveConfig(YAML::Emitter& emitter, const std::string& path); 00084 00085 QWidget* GetConfigWidget(QWidget* parent); 00086 00087 Q_SIGNALS: 00088 void MarkerReceived(const marti_visualization_msgs::TexturedMarkerConstPtr marker); 00089 void MarkersReceived(const marti_visualization_msgs::TexturedMarkerArrayConstPtr markers); 00090 00091 protected: 00092 void PrintError(const std::string& message); 00093 void PrintInfo(const std::string& message); 00094 void PrintWarning(const std::string& message); 00095 00096 protected Q_SLOTS: 00097 void SelectTopic(); 00098 void TopicEdited(); 00099 void ProcessMarker(const marti_visualization_msgs::TexturedMarkerConstPtr marker); 00100 void ProcessMarkers(const marti_visualization_msgs::TexturedMarkerArrayConstPtr markers); 00101 00102 private: 00103 struct MarkerData 00104 { 00105 ros::Time stamp; 00106 ros::Time expire_time; 00107 00108 float alpha_; 00109 00110 std::vector<uint8_t> texture_; 00111 int32_t texture_id_; 00112 int32_t texture_size_; 00113 float texture_x_; 00114 float texture_y_; 00115 00116 std::string encoding_; 00117 00118 std::vector<tf::Vector3> quad_; 00119 std::vector<tf::Vector3> transformed_quad_; 00120 00121 std::string source_frame_; 00122 00123 bool transformed; 00124 }; 00125 00126 Ui::marker_config ui_; 00127 QWidget* config_widget_; 00128 00129 std::string topic_; 00130 00131 ros::Subscriber marker_sub_; 00132 bool has_message_; 00133 00134 std::map<std::string, std::map<int, MarkerData> > markers_; 00135 00136 bool is_marker_array_; 00137 00138 void ProcessMarker(const marti_visualization_msgs::TexturedMarker& marker); 00139 00140 void MarkerCallback(const marti_visualization_msgs::TexturedMarkerConstPtr marker); 00141 00142 void MarkerArrayCallback( 00143 const marti_visualization_msgs::TexturedMarkerArrayConstPtr markers); 00144 }; 00145 } 00146 00147 #endif // MAPVIZ_PLUGINS_TEXTURED_MARKER_PLUGIN_H_