Go to the documentation of this file.00001
00002 #ifndef IRI_PERCEPTION_MSGS_MESSAGE_IMG_DETECTION_H
00003 #define IRI_PERCEPTION_MSGS_MESSAGE_IMG_DETECTION_H
00004 #include <string>
00005 #include <vector>
00006 #include <map>
00007 #include <ostream>
00008 #include "ros/serialization.h"
00009 #include "ros/builtin_message_traits.h"
00010 #include "ros/message_operations.h"
00011 #include "ros/time.h"
00012
00013 #include "ros/macros.h"
00014
00015 #include "ros/assert.h"
00016
00017 #include "std_msgs/Header.h"
00018 #include "iri_perception_msgs/single_img_detection.h"
00019
00020 namespace iri_perception_msgs
00021 {
00022 template <class ContainerAllocator>
00023 struct img_detection_ {
00024 typedef img_detection_<ContainerAllocator> Type;
00025
00026 img_detection_()
00027 : header()
00028 , dets()
00029 {
00030 }
00031
00032 img_detection_(const ContainerAllocator& _alloc)
00033 : header(_alloc)
00034 , dets(_alloc)
00035 {
00036 }
00037
00038 typedef ::std_msgs::Header_<ContainerAllocator> _header_type;
00039 ::std_msgs::Header_<ContainerAllocator> header;
00040
00041 typedef std::vector< ::iri_perception_msgs::single_img_detection_<ContainerAllocator> , typename ContainerAllocator::template rebind< ::iri_perception_msgs::single_img_detection_<ContainerAllocator> >::other > _dets_type;
00042 std::vector< ::iri_perception_msgs::single_img_detection_<ContainerAllocator> , typename ContainerAllocator::template rebind< ::iri_perception_msgs::single_img_detection_<ContainerAllocator> >::other > dets;
00043
00044
00045 typedef boost::shared_ptr< ::iri_perception_msgs::img_detection_<ContainerAllocator> > Ptr;
00046 typedef boost::shared_ptr< ::iri_perception_msgs::img_detection_<ContainerAllocator> const> ConstPtr;
00047 boost::shared_ptr<std::map<std::string, std::string> > __connection_header;
00048 };
00049 typedef ::iri_perception_msgs::img_detection_<std::allocator<void> > img_detection;
00050
00051 typedef boost::shared_ptr< ::iri_perception_msgs::img_detection> img_detectionPtr;
00052 typedef boost::shared_ptr< ::iri_perception_msgs::img_detection const> img_detectionConstPtr;
00053
00054
00055 template<typename ContainerAllocator>
00056 std::ostream& operator<<(std::ostream& s, const ::iri_perception_msgs::img_detection_<ContainerAllocator> & v)
00057 {
00058 ros::message_operations::Printer< ::iri_perception_msgs::img_detection_<ContainerAllocator> >::stream(s, "", v);
00059 return s;}
00060
00061 }
00062
00063 namespace ros
00064 {
00065 namespace message_traits
00066 {
00067 template<class ContainerAllocator> struct IsMessage< ::iri_perception_msgs::img_detection_<ContainerAllocator> > : public TrueType {};
00068 template<class ContainerAllocator> struct IsMessage< ::iri_perception_msgs::img_detection_<ContainerAllocator> const> : public TrueType {};
00069 template<class ContainerAllocator>
00070 struct MD5Sum< ::iri_perception_msgs::img_detection_<ContainerAllocator> > {
00071 static const char* value()
00072 {
00073 return "e9e8bbe61df18ff990a99d2579e484a0";
00074 }
00075
00076 static const char* value(const ::iri_perception_msgs::img_detection_<ContainerAllocator> &) { return value(); }
00077 static const uint64_t static_value1 = 0xe9e8bbe61df18ff9ULL;
00078 static const uint64_t static_value2 = 0x90a99d2579e484a0ULL;
00079 };
00080
00081 template<class ContainerAllocator>
00082 struct DataType< ::iri_perception_msgs::img_detection_<ContainerAllocator> > {
00083 static const char* value()
00084 {
00085 return "iri_perception_msgs/img_detection";
00086 }
00087
00088 static const char* value(const ::iri_perception_msgs::img_detection_<ContainerAllocator> &) { return value(); }
00089 };
00090
00091 template<class ContainerAllocator>
00092 struct Definition< ::iri_perception_msgs::img_detection_<ContainerAllocator> > {
00093 static const char* value()
00094 {
00095 return "# timestamp, frame id\n\
00096 Header header\n\
00097 \n\
00098 # detections vector\n\
00099 single_img_detection[] dets\n\
00100 ================================================================================\n\
00101 MSG: std_msgs/Header\n\
00102 # Standard metadata for higher-level stamped data types.\n\
00103 # This is generally used to communicate timestamped data \n\
00104 # in a particular coordinate frame.\n\
00105 # \n\
00106 # sequence ID: consecutively increasing ID \n\
00107 uint32 seq\n\
00108 #Two-integer timestamp that is expressed as:\n\
00109 # * stamp.secs: seconds (stamp_secs) since epoch\n\
00110 # * stamp.nsecs: nanoseconds since stamp_secs\n\
00111 # time-handling sugar is provided by the client library\n\
00112 time stamp\n\
00113 #Frame this data is associated with\n\
00114 # 0: no frame\n\
00115 # 1: global frame\n\
00116 string frame_id\n\
00117 \n\
00118 ================================================================================\n\
00119 MSG: iri_perception_msgs/single_img_detection\n\
00120 # detection identifier\n\
00121 uint32 id\n\
00122 \n\
00123 # OpenCV cv::Rect structure\n\
00124 # upper-left corner and width+height from the detection\n\
00125 float32 x\n\
00126 float32 y\n\
00127 float32 width\n\
00128 float32 height\n\
00129 \n\
00130 # detection score\n\
00131 float32 score\n\
00132 ";
00133 }
00134
00135 static const char* value(const ::iri_perception_msgs::img_detection_<ContainerAllocator> &) { return value(); }
00136 };
00137
00138 template<class ContainerAllocator> struct HasHeader< ::iri_perception_msgs::img_detection_<ContainerAllocator> > : public TrueType {};
00139 template<class ContainerAllocator> struct HasHeader< const ::iri_perception_msgs::img_detection_<ContainerAllocator> > : public TrueType {};
00140 }
00141 }
00142
00143 namespace ros
00144 {
00145 namespace serialization
00146 {
00147
00148 template<class ContainerAllocator> struct Serializer< ::iri_perception_msgs::img_detection_<ContainerAllocator> >
00149 {
00150 template<typename Stream, typename T> inline static void allInOne(Stream& stream, T m)
00151 {
00152 stream.next(m.header);
00153 stream.next(m.dets);
00154 }
00155
00156 ROS_DECLARE_ALLINONE_SERIALIZER;
00157 };
00158 }
00159 }
00160
00161 namespace ros
00162 {
00163 namespace message_operations
00164 {
00165
00166 template<class ContainerAllocator>
00167 struct Printer< ::iri_perception_msgs::img_detection_<ContainerAllocator> >
00168 {
00169 template<typename Stream> static void stream(Stream& s, const std::string& indent, const ::iri_perception_msgs::img_detection_<ContainerAllocator> & v)
00170 {
00171 s << indent << "header: ";
00172 s << std::endl;
00173 Printer< ::std_msgs::Header_<ContainerAllocator> >::stream(s, indent + " ", v.header);
00174 s << indent << "dets[]" << std::endl;
00175 for (size_t i = 0; i < v.dets.size(); ++i)
00176 {
00177 s << indent << " dets[" << i << "]: ";
00178 s << std::endl;
00179 s << indent;
00180 Printer< ::iri_perception_msgs::single_img_detection_<ContainerAllocator> >::stream(s, indent + " ", v.dets[i]);
00181 }
00182 }
00183 };
00184
00185
00186 }
00187 }
00188
00189 #endif // IRI_PERCEPTION_MSGS_MESSAGE_IMG_DETECTION_H
00190