Image.h
Go to the documentation of this file.
1 #include "sick_scan/sick_scan_base.h" /* Base definitions included in all header files, added by add_sick_scan_base_header.py. Do not edit this line. */
2 // Generated by gencpp from file sensor_msgs/Image.msg
3 // DO NOT EDIT!
4 
5 
6 #ifndef SENSOR_MSGS_MESSAGE_IMAGE_H
7 #define SENSOR_MSGS_MESSAGE_IMAGE_H
8 
9 
10 #include <string>
11 #include <vector>
12 #include <map>
13 
14 #include <ros/types.h>
15 #include <ros/serialization.h>
16 #include <ros/builtin_message_traits.h>
17 #include <ros/message_operations.h>
18 
19 #include <std_msgs/Header.h>
20 
21 namespace sensor_msgs
22 {
23 template <class ContainerAllocator>
24 struct Image_
25 {
27 
29  : header()
30  , height(0)
31  , width(0)
32  , encoding()
33  , is_bigendian(0)
34  , step(0)
35  , data() {
36  }
37  Image_(const ContainerAllocator& _alloc)
38  : header(_alloc)
39  , height(0)
40  , width(0)
41  , encoding(_alloc)
42  , is_bigendian(0)
43  , step(0)
44  , data(_alloc) {
45  (void)_alloc;
46  }
47 
48 
49 
50  typedef ::std_msgs::Header_<ContainerAllocator> _header_type;
52 
53  typedef uint32_t _height_type;
55 
56  typedef uint32_t _width_type;
58 
59  typedef std::basic_string<char, std::char_traits<char>, typename ContainerAllocator::template rebind<char>::other > _encoding_type;
61 
62  typedef uint8_t _is_bigendian_type;
64 
65  typedef uint32_t _step_type;
67 
68  typedef std::vector<uint8_t, typename ContainerAllocator::template rebind<uint8_t>::other > _data_type;
70 
71 
72 
73 
74  typedef std::shared_ptr< ::sensor_msgs::Image_<ContainerAllocator> > Ptr;
75  typedef std::shared_ptr< ::sensor_msgs::Image_<ContainerAllocator> const> ConstPtr;
76 
77 }; // struct Image_
78 
79 typedef ::sensor_msgs::Image_<std::allocator<void> > Image;
80 
81 typedef std::shared_ptr< ::sensor_msgs::Image > ImagePtr;
82 typedef std::shared_ptr< ::sensor_msgs::Image const> ImageConstPtr;
83 
84 // constants requiring out of line definition
85 
86 
87 
88 template<typename ContainerAllocator>
89 std::ostream& operator<<(std::ostream& s, const ::sensor_msgs::Image_<ContainerAllocator> & v)
90 {
92 return s;
93 }
94 
95 } // namespace sensor_msgs
96 
97 namespace roswrap
98 {
99 namespace message_traits
100 {
101 
102 
103 
104 // BOOLTRAITS {'IsFixedSize': False, 'IsMessage': True, 'HasHeader': True}
105 // {'std_msgs': ['/opt/ros/kinetic/share/std_msgs/cmake/../msg'], 'geometry_msgs': ['/opt/ros/kinetic/share/geometry_msgs/cmake/../msg'], 'sensor_msgs': ['/tmp/binarydeb/ros-kinetic-sensor-msgs-1.12.5/msg']}
106 
107 // !!!!!!!!!!! ['__class__', '__delattr__', '__dict__', '__doc__', '__eq__', '__format__', '__getattribute__', '__hash__', '__init__', '__module__', '__ne__', '__new__', '__reduce__', '__reduce_ex__', '__repr__', '__setattr__', '__sizeof__', '__str__', '__subclasshook__', '__weakref__', '_parsed_fields', 'constants', 'fields', 'full_name', 'has_header', 'header_present', 'names', 'package', 'parsed_fields', 'short_name', 'text', 'types']
108 
109 
110 
111 
112 template <class ContainerAllocator>
113 struct IsFixedSize< ::sensor_msgs::Image_<ContainerAllocator> >
114  : FalseType
115  { };
116 
117 template <class ContainerAllocator>
118 struct IsFixedSize< ::sensor_msgs::Image_<ContainerAllocator> const>
119  : FalseType
120  { };
121 
122 template <class ContainerAllocator>
123 struct IsMessage< ::sensor_msgs::Image_<ContainerAllocator> >
124  : TrueType
125  { };
126 
127 template <class ContainerAllocator>
128 struct IsMessage< ::sensor_msgs::Image_<ContainerAllocator> const>
129  : TrueType
130  { };
131 
132 template <class ContainerAllocator>
133 struct HasHeader< ::sensor_msgs::Image_<ContainerAllocator> >
134  : TrueType
135  { };
136 
137 template <class ContainerAllocator>
138 struct HasHeader< ::sensor_msgs::Image_<ContainerAllocator> const>
139  : TrueType
140  { };
141 
142 
143 template<class ContainerAllocator>
144 struct MD5Sum< ::sensor_msgs::Image_<ContainerAllocator> >
145 {
146  static const char* value()
147  {
148  return "060021388200f6f0f447d0fcd9c64743";
149  }
150 
151  static const char* value(const ::sensor_msgs::Image_<ContainerAllocator>&) { return value(); }
152  static const uint64_t static_value1 = 0x060021388200f6f0ULL;
153  static const uint64_t static_value2 = 0xf447d0fcd9c64743ULL;
154 };
155 
156 template<class ContainerAllocator>
157 struct DataType< ::sensor_msgs::Image_<ContainerAllocator> >
158 {
159  static const char* value()
160  {
161  return "sensor_msgs/Image";
162  }
163 
164  static const char* value(const ::sensor_msgs::Image_<ContainerAllocator>&) { return value(); }
165 };
166 
167 template<class ContainerAllocator>
168 struct Definition< ::sensor_msgs::Image_<ContainerAllocator> >
169 {
170  static const char* value()
171  {
172  return "# This message contains an uncompressed image\n\
173 # (0, 0) is at top-left corner of image\n\
174 #\n\
175 \n\
176 Header header # Header timestamp should be acquisition time of image\n\
177  # Header frame_id should be optical frame of camera\n\
178  # origin of frame should be optical center of cameara\n\
179  # +x should point to the right in the image\n\
180  # +y should point down in the image\n\
181  # +z should point into to plane of the image\n\
182  # If the frame_id here and the frame_id of the CameraInfo\n\
183  # message associated with the image conflict\n\
184  # the behavior is undefined\n\
185 \n\
186 uint32 height # image height, that is, number of rows\n\
187 uint32 width # image width, that is, number of columns\n\
188 \n\
189 # The legal values for encoding are in file src/image_encodings.cpp\n\
190 # If you want to standardize a new string format, join\n\
191 # ros-users@lists.sourceforge.net and send an email proposing a new encoding.\n\
192 \n\
193 string encoding # Encoding of pixels -- channel meaning, ordering, size\n\
194  # taken from the list of strings in include/sensor_msgs/image_encodings.h\n\
195 \n\
196 uint8 is_bigendian # is this data bigendian?\n\
197 uint32 step # Full row length in bytes\n\
198 uint8[] data # actual matrix data, size is (step * rows)\n\
199 \n\
200 ================================================================================\n\
201 MSG: std_msgs/Header\n\
202 # Standard metadata for higher-level stamped data types.\n\
203 # This is generally used to communicate timestamped data \n\
204 # in a particular coordinate frame.\n\
205 # \n\
206 # sequence ID: consecutively increasing ID \n\
207 uint32 seq\n\
208 #Two-integer timestamp that is expressed as:\n\
209 # * stamp.sec: seconds (stamp_secs) since epoch (in Python the variable is called 'secs')\n\
210 # * stamp.nsec: nanoseconds since stamp_secs (in Python the variable is called 'nsecs')\n\
211 # time-handling sugar is provided by the client library\n\
212 time stamp\n\
213 #Frame this data is associated with\n\
214 # 0: no frame\n\
215 # 1: global frame\n\
216 string frame_id\n\
217 ";
218  }
219 
220  static const char* value(const ::sensor_msgs::Image_<ContainerAllocator>&) { return value(); }
221 };
222 
223 } // namespace message_traits
224 } // namespace roswrap
225 
226 namespace roswrap
227 {
228 namespace serialization
229 {
230 
231  template<class ContainerAllocator> struct Serializer< ::sensor_msgs::Image_<ContainerAllocator> >
232  {
233  template<typename Stream, typename T> inline static void allInOne(Stream& stream, T m)
234  {
235  stream.next(m.header);
236  stream.next(m.height);
237  stream.next(m.width);
238  stream.next(m.encoding);
239  stream.next(m.is_bigendian);
240  stream.next(m.step);
241  stream.next(m.data);
242  }
243 
245  }; // struct Image_
246 
247 } // namespace serialization
248 } // namespace roswrap
249 
250 namespace roswrap
251 {
252 namespace message_operations
253 {
254 
255 template<class ContainerAllocator>
256 struct Printer< ::sensor_msgs::Image_<ContainerAllocator> >
257 {
258  template<typename Stream> static void stream(Stream& s, const std::string& indent, const ::sensor_msgs::Image_<ContainerAllocator>& v)
259  {
260  s << indent << "header: ";
261  s << std::endl;
263  s << indent << "height: ";
264  Printer<uint32_t>::stream(s, indent + " ", v.height);
265  s << indent << "width: ";
266  Printer<uint32_t>::stream(s, indent + " ", v.width);
267  s << indent << "encoding: ";
268  Printer<std::basic_string<char, std::char_traits<char>, typename ContainerAllocator::template rebind<char>::other > >::stream(s, indent + " ", v.encoding);
269  s << indent << "is_bigendian: ";
270  Printer<uint8_t>::stream(s, indent + " ", v.is_bigendian);
271  s << indent << "step: ";
272  Printer<uint32_t>::stream(s, indent + " ", v.step);
273  s << indent << "data[]" << std::endl;
274  for (size_t i = 0; i < v.data.size(); ++i)
275  {
276  s << indent << " data[" << i << "]: ";
277  Printer<uint8_t>::stream(s, indent + " ", v.data[i]);
278  }
279  }
280 };
281 
282 } // namespace message_operations
283 } // namespace roswrap
284 
285 #endif // SENSOR_MSGS_MESSAGE_IMAGE_H
roswrap::message_traits::FalseType
Base type for compile-type true/false tests. Compatible with Boost.MPL. classes inheriting from this ...
Definition: message_traits.h:89
sensor_msgs::Image_::step
_step_type step
Definition: Image.h:66
sensor_msgs::Image
::sensor_msgs::Image_< std::allocator< void > > Image
Definition: Image.h:79
multiscan_pcap_player.indent
indent
Definition: multiscan_pcap_player.py:252
roswrap::serialization::Serializer
Templated serialization class. Default implementation provides backwards compatibility with old messa...
Definition: serialization.h:120
roswrap::message_traits::Definition< ::sensor_msgs::Image_< ContainerAllocator > >::value
static const char * value()
Definition: Image.h:170
roswrap::message_traits::HasHeader
HasHeader informs whether or not there is a header that gets serialized as the first thing in the mes...
Definition: message_traits.h:107
roswrap::message_operations::Printer< ::sensor_msgs::Image_< ContainerAllocator > >::stream
static void stream(Stream &s, const std::string &indent, const ::sensor_msgs::Image_< ContainerAllocator > &v)
Definition: Image.h:258
sensor_msgs::Image_::ConstPtr
std::shared_ptr< ::sensor_msgs::Image_< ContainerAllocator > const > ConstPtr
Definition: Image.h:75
const
#define const
Definition: getopt.c:38
s
XmlRpcServer s
roswrap::message_traits::Definition< ::sensor_msgs::Image_< ContainerAllocator > >::value
static const char * value(const ::sensor_msgs::Image_< ContainerAllocator > &)
Definition: Image.h:220
roswrap::message_operations::Printer::stream
static void stream(Stream &s, const std::string &indent, const M &value)
Definition: message_operations.h:43
roswrap::message_traits::IsFixedSize
A fixed-size datatype is one whose size is constant, i.e. it has no variable-length arrays or strings...
Definition: message_traits.h:103
sensor_msgs::Image_::_header_type
::std_msgs::Header_< ContainerAllocator > _header_type
Definition: Image.h:50
roswrap::message_traits::DataType< ::sensor_msgs::Image_< ContainerAllocator > >::value
static const char * value(const ::sensor_msgs::Image_< ContainerAllocator > &)
Definition: Image.h:164
ros::message_operations::Printer
sensor_msgs::Image_::_is_bigendian_type
uint8_t _is_bigendian_type
Definition: Image.h:62
roswrap::message_traits::MD5Sum< ::sensor_msgs::Image_< ContainerAllocator > >::value
static const char * value()
Definition: Image.h:146
ROS_DECLARE_ALLINONE_SERIALIZER
#define ROS_DECLARE_ALLINONE_SERIALIZER
Declare your serializer to use an allInOne member instead of requiring 3 different serialization func...
Definition: serialization.h:74
roswrap::message_traits::DataType
Specialize to provide the datatype for a message.
Definition: message_traits.h:135
roswrap::message_traits::Definition
Specialize to provide the definition for a message.
Definition: message_traits.h:152
sensor_msgs::Image_::data
_data_type data
Definition: Image.h:69
roswrap::message_traits::MD5Sum< ::sensor_msgs::Image_< ContainerAllocator > >::value
static const char * value(const ::sensor_msgs::Image_< ContainerAllocator > &)
Definition: Image.h:151
sensor_msgs::operator<<
std::ostream & operator<<(std::ostream &s, const ::sensor_msgs::BatteryState_< ContainerAllocator > &v)
Definition: BatteryState.h:187
sensor_msgs::Image_::width
_width_type width
Definition: Image.h:57
roswrap::message_traits::DataType< ::sensor_msgs::Image_< ContainerAllocator > >::value
static const char * value()
Definition: Image.h:159
sensor_msgs::Image_::_step_type
uint32_t _step_type
Definition: Image.h:65
roswrap
Definition: param_modi.cpp:41
sensor_msgs::Image_::_data_type
std::vector< uint8_t, typename ContainerAllocator::template rebind< uint8_t >::other > _data_type
Definition: Image.h:68
roswrap::message_operations::Printer
Definition: message_operations.h:40
std_msgs::Header_< std::allocator< void > >
sensor_msgs::Image_::header
_header_type header
Definition: Image.h:51
roswrap::message_traits::TrueType
Base type for compile-type true/false tests. Compatible with Boost.MPL. classes inheriting from this ...
Definition: message_traits.h:79
roswrap::message_traits::MD5Sum
Specialize to provide the md5sum for a message.
Definition: message_traits.h:118
sensor_msgs::Image_::encoding
_encoding_type encoding
Definition: Image.h:60
sensor_msgs::Image_::Ptr
std::shared_ptr< ::sensor_msgs::Image_< ContainerAllocator > > Ptr
Definition: Image.h:74
sensor_msgs::Image_::is_bigendian
_is_bigendian_type is_bigendian
Definition: Image.h:63
sensor_msgs::Image_::height
_height_type height
Definition: Image.h:54
roswrap::message_traits::IsMessage
Am I message or not.
Definition: message_traits.h:112
sensor_msgs::Image_::_encoding_type
std::basic_string< char, std::char_traits< char >, typename ContainerAllocator::template rebind< char >::other > _encoding_type
Definition: Image.h:59
sensor_msgs::Image_::Image_
Image_()
Definition: Image.h:28
sensor_msgs::Image_::_width_type
uint32_t _width_type
Definition: Image.h:56
sick_scan_base.h
roswrap::serialization::Stream
Stream base-class, provides common functionality for IStream and OStream.
Definition: serialization.h:705
sensor_msgs::ImagePtr
std::shared_ptr< ::sensor_msgs::Image > ImagePtr
Definition: Image.h:81
sensor_msgs::ImageConstPtr
std::shared_ptr< ::sensor_msgs::Image const > ImageConstPtr
Definition: Image.h:82
sensor_msgs
Tools for manipulating sensor_msgs.
Header.h
sensor_msgs::Image_::Image_
Image_(const ContainerAllocator &_alloc)
Definition: Image.h:37
roswrap::serialization::Serializer< ::sensor_msgs::Image_< ContainerAllocator > >::allInOne
static void allInOne(Stream &stream, T m)
Definition: Image.h:233
sensor_msgs::Image_::Type
Image_< ContainerAllocator > Type
Definition: Image.h:26
sensor_msgs::Image_
Definition: Image.h:24
sensor_msgs::Image_::_height_type
uint32_t _height_type
Definition: Image.h:53


sick_scan_xd
Author(s): Michael Lehning , Jochen Sprickerhof , Martin Günther
autogenerated on Fri Oct 25 2024 02:47:08