Go to the documentation of this file.
6 #ifndef SENSOR_MSGS_MESSAGE_SETCAMERAINFOREQUEST_H
7 #define SENSOR_MSGS_MESSAGE_SETCAMERAINFOREQUEST_H
14 #include <ros/types.h>
15 #include <ros/serialization.h>
16 #include <ros/builtin_message_traits.h>
17 #include <ros/message_operations.h>
23 template <
class ContainerAllocator>
44 typedef std::shared_ptr< ::sensor_msgs::SetCameraInfoRequest_<ContainerAllocator> >
Ptr;
45 typedef std::shared_ptr< ::sensor_msgs::SetCameraInfoRequest_<ContainerAllocator>
const>
ConstPtr;
58 template<
typename ContainerAllocator>
59 std::ostream&
operator<<(std::ostream& s, const ::sensor_msgs::SetCameraInfoRequest_<ContainerAllocator> & v)
69 namespace message_traits
82 template <
class ContainerAllocator>
87 template <
class ContainerAllocator>
92 template <
class ContainerAllocator>
97 template <
class ContainerAllocator>
102 template <
class ContainerAllocator>
107 template <
class ContainerAllocator>
113 template<
class ContainerAllocator>
118 return "ee34be01fdeee563d0d99cd594d5581d";
121 static const char*
value(const ::sensor_msgs::SetCameraInfoRequest_<ContainerAllocator>&) {
return value(); }
122 static const uint64_t static_value1 = 0xee34be01fdeee563ULL;
123 static const uint64_t static_value2 = 0xd0d99cd594d5581dULL;
126 template<
class ContainerAllocator>
131 return "sensor_msgs/SetCameraInfoRequest";
134 static const char*
value(const ::sensor_msgs::SetCameraInfoRequest_<ContainerAllocator>&) {
return value(); }
137 template<
class ContainerAllocator>
150 sensor_msgs/CameraInfo camera_info\n\
152 ================================================================================\n\
153 MSG: sensor_msgs/CameraInfo\n\
154 # This message defines meta information for a camera. It should be in a\n\
155 # camera namespace on topic \"camera_info\" and accompanied by up to five\n\
156 # image topics named:\n\
158 # image_raw - raw data from the camera driver, possibly Bayer encoded\n\
159 # image - monochrome, distorted\n\
160 # image_color - color, distorted\n\
161 # image_rect - monochrome, rectified\n\
162 # image_rect_color - color, rectified\n\
164 # The image_pipeline contains packages (image_proc, stereo_image_proc)\n\
165 # for producing the four processed image topics from image_raw and\n\
166 # camera_info. The meaning of the camera parameters are described in\n\
167 # detail at http://www.ros.org/wiki/image_pipeline/CameraInfo.\n\
169 # The image_geometry package provides a user-friendly interface to\n\
170 # common operations using this meta information. If you want to, e.g.,\n\
171 # project a 3d point into image coordinates, we strongly recommend\n\
172 # using image_geometry.\n\
174 # If the camera is uncalibrated, the matrices D, K, R, P should be left\n\
175 # zeroed out. In particular, clients may assume that K[0] == 0.0\n\
176 # indicates an uncalibrated camera.\n\
178 #######################################################################\n\
179 # Image acquisition info #\n\
180 #######################################################################\n\
182 # Time of image acquisition, camera coordinate frame ID\n\
183 Header header # Header timestamp should be acquisition time of image\n\
184 # Header frame_id should be optical frame of camera\n\
185 # origin of frame should be optical center of camera\n\
186 # +x should point to the right in the image\n\
187 # +y should point down in the image\n\
188 # +z should point into the plane of the image\n\
191 #######################################################################\n\
192 # Calibration Parameters #\n\
193 #######################################################################\n\
194 # These are fixed during camera calibration. Their values will be the #\n\
195 # same in all messages until the camera is recalibrated. Note that #\n\
196 # self-calibrating systems may \"recalibrate\" frequently. #\n\
198 # The internal parameters can be used to warp a raw (distorted) image #\n\
200 # 1. An undistorted image (requires D and K) #\n\
201 # 2. A rectified image (requires D, K, R) #\n\
202 # The projection matrix P projects 3D points into the rectified image.#\n\
203 #######################################################################\n\
205 # The image dimensions with which the camera was calibrated. Normally\n\
206 # this will be the full camera resolution in pixels.\n\
210 # The distortion model used. Supported models are listed in\n\
211 # sensor_msgs/distortion_models.h. For most cameras, \"plumb_bob\" - a\n\
212 # simple model of radial and tangential distortion - is sufficient.\n\
213 string distortion_model\n\
215 # The distortion parameters, size depending on the distortion model.\n\
216 # For \"plumb_bob\", the 5 parameters are: (k1, k2, t1, t2, k3).\n\
219 # Intrinsic camera matrix for the raw (distorted) images.\n\
223 # Projects 3D points in the camera coordinate frame to 2D pixel\n\
224 # coordinates using the focal lengths (fx, fy) and principal point\n\
226 float64[9] K # 3x3 row-major matrix\n\
228 # Rectification matrix (stereo cameras only)\n\
229 # A rotation matrix aligning the camera coordinate system to the ideal\n\
230 # stereo image plane so that epipolar lines in both stereo images are\n\
232 float64[9] R # 3x3 row-major matrix\n\
234 # Projection/camera matrix\n\
236 # P = [ 0 fy' cy' Ty]\n\
238 # By convention, this matrix specifies the intrinsic (camera) matrix\n\
239 # of the processed (rectified) image. That is, the left 3x3 portion\n\
240 # is the normal camera intrinsic matrix for the rectified image.\n\
241 # It projects 3D points in the camera coordinate frame to 2D pixel\n\
242 # coordinates using the focal lengths (fx', fy') and principal point\n\
243 # (cx', cy') - these may differ from the values in K.\n\
244 # For monocular cameras, Tx = Ty = 0. Normally, monocular cameras will\n\
245 # also have R = the identity and P[1:3,1:3] = K.\n\
246 # For a stereo pair, the fourth column [Tx Ty 0]' is related to the\n\
247 # position of the optical center of the second camera in the first\n\
248 # camera's frame. We assume Tz = 0 so both cameras are in the same\n\
249 # stereo image plane. The first camera always has Tx = Ty = 0. For\n\
250 # the right (second) camera of a horizontal stereo pair, Ty = 0 and\n\
251 # Tx = -fx' * B, where B is the baseline between the cameras.\n\
252 # Given a 3D point [X Y Z]', the projection (x, y) of the point onto\n\
253 # the rectified image is given by:\n\
254 # [u v w]' = P * [X Y Z 1]'\n\
257 # This holds for both images of a stereo pair.\n\
258 float64[12] P # 3x4 row-major matrix\n\
261 #######################################################################\n\
262 # Operational Parameters #\n\
263 #######################################################################\n\
264 # These define the image region actually captured by the camera #\n\
265 # driver. Although they affect the geometry of the output image, they #\n\
266 # may be changed freely without recalibrating the camera. #\n\
267 #######################################################################\n\
269 # Binning refers here to any camera setting which combines rectangular\n\
270 # neighborhoods of pixels into larger \"super-pixels.\" It reduces the\n\
271 # resolution of the output image to\n\
272 # (width / binning_x) x (height / binning_y).\n\
273 # The default values binning_x = binning_y = 0 is considered the same\n\
274 # as binning_x = binning_y = 1 (no subsampling).\n\
278 # Region of interest (subwindow of full camera resolution), given in\n\
279 # full resolution (unbinned) image coordinates. A particular ROI\n\
280 # always denotes the same window of pixels on the camera sensor,\n\
281 # regardless of binning settings.\n\
282 # The default setting of roi (all values 0) is considered the same as\n\
283 # full resolution (roi.width = width, roi.height = height).\n\
284 RegionOfInterest roi\n\
286 ================================================================================\n\
287 MSG: std_msgs/Header\n\
288 # Standard metadata for higher-level stamped data types.\n\
289 # This is generally used to communicate timestamped data \n\
290 # in a particular coordinate frame.\n\
292 # sequence ID: consecutively increasing ID \n\
294 #Two-integer timestamp that is expressed as:\n\
295 # * stamp.sec: seconds (stamp_secs) since epoch (in Python the variable is called 'secs')\n\
296 # * stamp.nsec: nanoseconds since stamp_secs (in Python the variable is called 'nsecs')\n\
297 # time-handling sugar is provided by the client library\n\
299 #Frame this data is associated with\n\
304 ================================================================================\n\
305 MSG: sensor_msgs/RegionOfInterest\n\
306 # This message is used to specify a region of interest within an image.\n\
308 # When used to specify the ROI setting of the camera when the image was\n\
309 # taken, the height and width fields should either match the height and\n\
310 # width fields for the associated image; or height = width = 0\n\
311 # indicates that the full resolution image was captured.\n\
313 uint32 x_offset # Leftmost pixel of the ROI\n\
314 # (0 if the ROI includes the left edge of the image)\n\
315 uint32 y_offset # Topmost pixel of the ROI\n\
316 # (0 if the ROI includes the top edge of the image)\n\
317 uint32 height # Height of ROI\n\
318 uint32 width # Width of ROI\n\
320 # True if a distinct rectified ROI should be calculated from the \"raw\"\n\
321 # ROI in this message. Typically this should be False if the full image\n\
322 # is captured (ROI not used), and True if a subwindow is captured (ROI\n\
328 static const char*
value(const ::sensor_msgs::SetCameraInfoRequest_<ContainerAllocator>&) {
return value(); }
336 namespace serialization
341 template<
typename Stream,
typename T>
inline static void allInOne(
Stream& stream, T m)
343 stream.next(m.camera_info);
354 namespace message_operations
357 template<
class ContainerAllocator>
360 template<
typename Stream>
static void stream(Stream& s,
const std::string&
indent, const ::sensor_msgs::SetCameraInfoRequest_<ContainerAllocator>& v)
362 s <<
indent <<
"camera_info: ";
371 #endif // SENSOR_MSGS_MESSAGE_SETCAMERAINFOREQUEST_H
Base type for compile-type true/false tests. Compatible with Boost.MPL. classes inheriting from this ...
::sensor_msgs::CameraInfo_< ContainerAllocator > _camera_info_type
Templated serialization class. Default implementation provides backwards compatibility with old messa...
static const char * value()
std::shared_ptr< ::sensor_msgs::SetCameraInfoRequest_< ContainerAllocator > > Ptr
std::shared_ptr< ::sensor_msgs::SetCameraInfoRequest const > SetCameraInfoRequestConstPtr
static void stream(Stream &s, const std::string &indent, const M &value)
static const char * value(const ::sensor_msgs::SetCameraInfoRequest_< ContainerAllocator > &)
A fixed-size datatype is one whose size is constant, i.e. it has no variable-length arrays or strings...
#define ROS_DECLARE_ALLINONE_SERIALIZER
Declare your serializer to use an allInOne member instead of requiring 3 different serialization func...
static const char * value()
Specialize to provide the datatype for a message.
Specialize to provide the definition for a message.
std::ostream & operator<<(std::ostream &s, const ::sensor_msgs::BatteryState_< ContainerAllocator > &v)
static const char * value(const ::sensor_msgs::SetCameraInfoRequest_< ContainerAllocator > &)
SetCameraInfoRequest_(const ContainerAllocator &_alloc)
std::shared_ptr< ::sensor_msgs::SetCameraInfoRequest > SetCameraInfoRequestPtr
::sensor_msgs::SetCameraInfoRequest_< std::allocator< void > > SetCameraInfoRequest
static const char * value(const ::sensor_msgs::SetCameraInfoRequest_< ContainerAllocator > &)
SetCameraInfoRequest_< ContainerAllocator > Type
static const char * value()
Base type for compile-type true/false tests. Compatible with Boost.MPL. classes inheriting from this ...
Specialize to provide the md5sum for a message.
_camera_info_type camera_info
static void stream(Stream &s, const std::string &indent, const ::sensor_msgs::SetCameraInfoRequest_< ContainerAllocator > &v)
Stream base-class, provides common functionality for IStream and OStream.
static void allInOne(Stream &stream, T m)
std::shared_ptr< ::sensor_msgs::SetCameraInfoRequest_< ContainerAllocator > const > ConstPtr
Tools for manipulating sensor_msgs.
sick_scan_xd
Author(s): Michael Lehning
, Jochen Sprickerhof , Martin Günther
autogenerated on Fri Oct 25 2024 02:47:10