00001
00002 #ifndef IMAGE_CB_DETECTOR_MESSAGE_CONFIGACTIONGOAL_H
00003 #define IMAGE_CB_DETECTOR_MESSAGE_CONFIGACTIONGOAL_H
00004 #include <string>
00005 #include <vector>
00006 #include <ostream>
00007 #include "ros/serialization.h"
00008 #include "ros/builtin_message_traits.h"
00009 #include "ros/message_operations.h"
00010 #include "ros/message.h"
00011 #include "ros/time.h"
00012
00013 #include "std_msgs/Header.h"
00014 #include "actionlib_msgs/GoalID.h"
00015 #include "image_cb_detector/ConfigGoal.h"
00016
00017 namespace image_cb_detector
00018 {
00019 template <class ContainerAllocator>
00020 struct ConfigActionGoal_ : public ros::Message
00021 {
00022 typedef ConfigActionGoal_<ContainerAllocator> Type;
00023
00024 ConfigActionGoal_()
00025 : header()
00026 , goal_id()
00027 , goal()
00028 {
00029 }
00030
00031 ConfigActionGoal_(const ContainerAllocator& _alloc)
00032 : header(_alloc)
00033 , goal_id(_alloc)
00034 , goal(_alloc)
00035 {
00036 }
00037
00038 typedef ::std_msgs::Header_<ContainerAllocator> _header_type;
00039 ::std_msgs::Header_<ContainerAllocator> header;
00040
00041 typedef ::actionlib_msgs::GoalID_<ContainerAllocator> _goal_id_type;
00042 ::actionlib_msgs::GoalID_<ContainerAllocator> goal_id;
00043
00044 typedef ::image_cb_detector::ConfigGoal_<ContainerAllocator> _goal_type;
00045 ::image_cb_detector::ConfigGoal_<ContainerAllocator> goal;
00046
00047
00048 private:
00049 static const char* __s_getDataType_() { return "image_cb_detector/ConfigActionGoal"; }
00050 public:
00051 ROS_DEPRECATED static const std::string __s_getDataType() { return __s_getDataType_(); }
00052
00053 ROS_DEPRECATED const std::string __getDataType() const { return __s_getDataType_(); }
00054
00055 private:
00056 static const char* __s_getMD5Sum_() { return "47438deb496822a5e3dc575b6081de23"; }
00057 public:
00058 ROS_DEPRECATED static const std::string __s_getMD5Sum() { return __s_getMD5Sum_(); }
00059
00060 ROS_DEPRECATED const std::string __getMD5Sum() const { return __s_getMD5Sum_(); }
00061
00062 private:
00063 static const char* __s_getMessageDefinition_() { return "\n\
00064 Header header\n\
00065 actionlib_msgs/GoalID goal_id\n\
00066 ConfigGoal goal\n\
00067 \n\
00068 ================================================================================\n\
00069 MSG: std_msgs/Header\n\
00070 # Standard metadata for higher-level stamped data types.\n\
00071 # This is generally used to communicate timestamped data \n\
00072 # in a particular coordinate frame.\n\
00073 # \n\
00074 # sequence ID: consecutively increasing ID \n\
00075 uint32 seq\n\
00076 #Two-integer timestamp that is expressed as:\n\
00077 # * stamp.secs: seconds (stamp_secs) since epoch\n\
00078 # * stamp.nsecs: nanoseconds since stamp_secs\n\
00079 # time-handling sugar is provided by the client library\n\
00080 time stamp\n\
00081 #Frame this data is associated with\n\
00082 # 0: no frame\n\
00083 # 1: global frame\n\
00084 string frame_id\n\
00085 \n\
00086 ================================================================================\n\
00087 MSG: actionlib_msgs/GoalID\n\
00088 # The stamp should store the time at which this goal was requested.\n\
00089 # It is used by an action server when it tries to preempt all\n\
00090 # goals that were requested before a certain time\n\
00091 time stamp\n\
00092 \n\
00093 # The id provides a way to associate feedback and\n\
00094 # result message with specific goal requests. The id\n\
00095 # specified must be unique.\n\
00096 string id\n\
00097 \n\
00098 \n\
00099 ================================================================================\n\
00100 MSG: image_cb_detector/ConfigGoal\n\
00101 uint32 num_x # Number of checkerboard corners in the X direction\n\
00102 uint32 num_y # Number of corners in the Y direction\n\
00103 float32 spacing_x # Spacing between corners in the X direction (meters)\n\
00104 float32 spacing_y # Spacing between corners in the Y direction (meters)\n\
00105 \n\
00106 # Specify how many times we want to upsample the image.\n\
00107 # This is often useful for detecting small checkerboards far away\n\
00108 float32 width_scaling\n\
00109 float32 height_scaling\n\
00110 \n\
00111 # Configure openCV's subpixel corner detector\n\
00112 uint32 subpixel_window\n\
00113 int32 subpixel_zero_zone\n\
00114 \n\
00115 \n\
00116 "; }
00117 public:
00118 ROS_DEPRECATED static const std::string __s_getMessageDefinition() { return __s_getMessageDefinition_(); }
00119
00120 ROS_DEPRECATED const std::string __getMessageDefinition() const { return __s_getMessageDefinition_(); }
00121
00122 ROS_DEPRECATED virtual uint8_t *serialize(uint8_t *write_ptr, uint32_t seq) const
00123 {
00124 ros::serialization::OStream stream(write_ptr, 1000000000);
00125 ros::serialization::serialize(stream, header);
00126 ros::serialization::serialize(stream, goal_id);
00127 ros::serialization::serialize(stream, goal);
00128 return stream.getData();
00129 }
00130
00131 ROS_DEPRECATED virtual uint8_t *deserialize(uint8_t *read_ptr)
00132 {
00133 ros::serialization::IStream stream(read_ptr, 1000000000);
00134 ros::serialization::deserialize(stream, header);
00135 ros::serialization::deserialize(stream, goal_id);
00136 ros::serialization::deserialize(stream, goal);
00137 return stream.getData();
00138 }
00139
00140 ROS_DEPRECATED virtual uint32_t serializationLength() const
00141 {
00142 uint32_t size = 0;
00143 size += ros::serialization::serializationLength(header);
00144 size += ros::serialization::serializationLength(goal_id);
00145 size += ros::serialization::serializationLength(goal);
00146 return size;
00147 }
00148
00149 typedef boost::shared_ptr< ::image_cb_detector::ConfigActionGoal_<ContainerAllocator> > Ptr;
00150 typedef boost::shared_ptr< ::image_cb_detector::ConfigActionGoal_<ContainerAllocator> const> ConstPtr;
00151 };
00152 typedef ::image_cb_detector::ConfigActionGoal_<std::allocator<void> > ConfigActionGoal;
00153
00154 typedef boost::shared_ptr< ::image_cb_detector::ConfigActionGoal> ConfigActionGoalPtr;
00155 typedef boost::shared_ptr< ::image_cb_detector::ConfigActionGoal const> ConfigActionGoalConstPtr;
00156
00157
00158 template<typename ContainerAllocator>
00159 std::ostream& operator<<(std::ostream& s, const ::image_cb_detector::ConfigActionGoal_<ContainerAllocator> & v)
00160 {
00161 ros::message_operations::Printer< ::image_cb_detector::ConfigActionGoal_<ContainerAllocator> >::stream(s, "", v);
00162 return s;}
00163
00164 }
00165
00166 namespace ros
00167 {
00168 namespace message_traits
00169 {
00170 template<class ContainerAllocator>
00171 struct MD5Sum< ::image_cb_detector::ConfigActionGoal_<ContainerAllocator> > {
00172 static const char* value()
00173 {
00174 return "47438deb496822a5e3dc575b6081de23";
00175 }
00176
00177 static const char* value(const ::image_cb_detector::ConfigActionGoal_<ContainerAllocator> &) { return value(); }
00178 static const uint64_t static_value1 = 0x47438deb496822a5ULL;
00179 static const uint64_t static_value2 = 0xe3dc575b6081de23ULL;
00180 };
00181
00182 template<class ContainerAllocator>
00183 struct DataType< ::image_cb_detector::ConfigActionGoal_<ContainerAllocator> > {
00184 static const char* value()
00185 {
00186 return "image_cb_detector/ConfigActionGoal";
00187 }
00188
00189 static const char* value(const ::image_cb_detector::ConfigActionGoal_<ContainerAllocator> &) { return value(); }
00190 };
00191
00192 template<class ContainerAllocator>
00193 struct Definition< ::image_cb_detector::ConfigActionGoal_<ContainerAllocator> > {
00194 static const char* value()
00195 {
00196 return "\n\
00197 Header header\n\
00198 actionlib_msgs/GoalID goal_id\n\
00199 ConfigGoal goal\n\
00200 \n\
00201 ================================================================================\n\
00202 MSG: std_msgs/Header\n\
00203 # Standard metadata for higher-level stamped data types.\n\
00204 # This is generally used to communicate timestamped data \n\
00205 # in a particular coordinate frame.\n\
00206 # \n\
00207 # sequence ID: consecutively increasing ID \n\
00208 uint32 seq\n\
00209 #Two-integer timestamp that is expressed as:\n\
00210 # * stamp.secs: seconds (stamp_secs) since epoch\n\
00211 # * stamp.nsecs: nanoseconds since stamp_secs\n\
00212 # time-handling sugar is provided by the client library\n\
00213 time stamp\n\
00214 #Frame this data is associated with\n\
00215 # 0: no frame\n\
00216 # 1: global frame\n\
00217 string frame_id\n\
00218 \n\
00219 ================================================================================\n\
00220 MSG: actionlib_msgs/GoalID\n\
00221 # The stamp should store the time at which this goal was requested.\n\
00222 # It is used by an action server when it tries to preempt all\n\
00223 # goals that were requested before a certain time\n\
00224 time stamp\n\
00225 \n\
00226 # The id provides a way to associate feedback and\n\
00227 # result message with specific goal requests. The id\n\
00228 # specified must be unique.\n\
00229 string id\n\
00230 \n\
00231 \n\
00232 ================================================================================\n\
00233 MSG: image_cb_detector/ConfigGoal\n\
00234 uint32 num_x # Number of checkerboard corners in the X direction\n\
00235 uint32 num_y # Number of corners in the Y direction\n\
00236 float32 spacing_x # Spacing between corners in the X direction (meters)\n\
00237 float32 spacing_y # Spacing between corners in the Y direction (meters)\n\
00238 \n\
00239 # Specify how many times we want to upsample the image.\n\
00240 # This is often useful for detecting small checkerboards far away\n\
00241 float32 width_scaling\n\
00242 float32 height_scaling\n\
00243 \n\
00244 # Configure openCV's subpixel corner detector\n\
00245 uint32 subpixel_window\n\
00246 int32 subpixel_zero_zone\n\
00247 \n\
00248 \n\
00249 ";
00250 }
00251
00252 static const char* value(const ::image_cb_detector::ConfigActionGoal_<ContainerAllocator> &) { return value(); }
00253 };
00254
00255 template<class ContainerAllocator> struct HasHeader< ::image_cb_detector::ConfigActionGoal_<ContainerAllocator> > : public TrueType {};
00256 template<class ContainerAllocator> struct HasHeader< const ::image_cb_detector::ConfigActionGoal_<ContainerAllocator> > : public TrueType {};
00257 }
00258 }
00259
00260 namespace ros
00261 {
00262 namespace serialization
00263 {
00264
00265 template<class ContainerAllocator> struct Serializer< ::image_cb_detector::ConfigActionGoal_<ContainerAllocator> >
00266 {
00267 template<typename Stream, typename T> inline static void allInOne(Stream& stream, T m)
00268 {
00269 stream.next(m.header);
00270 stream.next(m.goal_id);
00271 stream.next(m.goal);
00272 }
00273
00274 ROS_DECLARE_ALLINONE_SERIALIZER;
00275 };
00276 }
00277 }
00278
00279 namespace ros
00280 {
00281 namespace message_operations
00282 {
00283
00284 template<class ContainerAllocator>
00285 struct Printer< ::image_cb_detector::ConfigActionGoal_<ContainerAllocator> >
00286 {
00287 template<typename Stream> static void stream(Stream& s, const std::string& indent, const ::image_cb_detector::ConfigActionGoal_<ContainerAllocator> & v)
00288 {
00289 s << indent << "header: ";
00290 s << std::endl;
00291 Printer< ::std_msgs::Header_<ContainerAllocator> >::stream(s, indent + " ", v.header);
00292 s << indent << "goal_id: ";
00293 s << std::endl;
00294 Printer< ::actionlib_msgs::GoalID_<ContainerAllocator> >::stream(s, indent + " ", v.goal_id);
00295 s << indent << "goal: ";
00296 s << std::endl;
00297 Printer< ::image_cb_detector::ConfigGoal_<ContainerAllocator> >::stream(s, indent + " ", v.goal);
00298 }
00299 };
00300
00301
00302 }
00303 }
00304
00305 #endif // IMAGE_CB_DETECTOR_MESSAGE_CONFIGACTIONGOAL_H
00306