KltPoints.h
Go to the documentation of this file.
00001 /* Auto-generated by genmsg_cpp for file /home/rosbuild/hudson/workspace/doc-fuerte-vision_visp/doc_stacks/2013-12-28_17-43-01.443180/vision_visp/visp_tracker/msg/KltPoints.msg */
00002 #ifndef VISP_TRACKER_MESSAGE_KLTPOINTS_H
00003 #define VISP_TRACKER_MESSAGE_KLTPOINTS_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 "visp_tracker/KltPoint.h"
00019 
00020 namespace visp_tracker
00021 {
00022 template <class ContainerAllocator>
00023 struct KltPoints_ {
00024   typedef KltPoints_<ContainerAllocator> Type;
00025 
00026   KltPoints_()
00027   : header()
00028   , klt_points_positions()
00029   {
00030   }
00031 
00032   KltPoints_(const ContainerAllocator& _alloc)
00033   : header(_alloc)
00034   , klt_points_positions(_alloc)
00035   {
00036   }
00037 
00038   typedef  ::std_msgs::Header_<ContainerAllocator>  _header_type;
00039    ::std_msgs::Header_<ContainerAllocator>  header;
00040 
00041   typedef std::vector< ::visp_tracker::KltPoint_<ContainerAllocator> , typename ContainerAllocator::template rebind< ::visp_tracker::KltPoint_<ContainerAllocator> >::other >  _klt_points_positions_type;
00042   std::vector< ::visp_tracker::KltPoint_<ContainerAllocator> , typename ContainerAllocator::template rebind< ::visp_tracker::KltPoint_<ContainerAllocator> >::other >  klt_points_positions;
00043 
00044 
00045   typedef boost::shared_ptr< ::visp_tracker::KltPoints_<ContainerAllocator> > Ptr;
00046   typedef boost::shared_ptr< ::visp_tracker::KltPoints_<ContainerAllocator>  const> ConstPtr;
00047   boost::shared_ptr<std::map<std::string, std::string> > __connection_header;
00048 }; // struct KltPoints
00049 typedef  ::visp_tracker::KltPoints_<std::allocator<void> > KltPoints;
00050 
00051 typedef boost::shared_ptr< ::visp_tracker::KltPoints> KltPointsPtr;
00052 typedef boost::shared_ptr< ::visp_tracker::KltPoints const> KltPointsConstPtr;
00053 
00054 
00055 template<typename ContainerAllocator>
00056 std::ostream& operator<<(std::ostream& s, const  ::visp_tracker::KltPoints_<ContainerAllocator> & v)
00057 {
00058   ros::message_operations::Printer< ::visp_tracker::KltPoints_<ContainerAllocator> >::stream(s, "", v);
00059   return s;}
00060 
00061 } // namespace visp_tracker
00062 
00063 namespace ros
00064 {
00065 namespace message_traits
00066 {
00067 template<class ContainerAllocator> struct IsMessage< ::visp_tracker::KltPoints_<ContainerAllocator> > : public TrueType {};
00068 template<class ContainerAllocator> struct IsMessage< ::visp_tracker::KltPoints_<ContainerAllocator>  const> : public TrueType {};
00069 template<class ContainerAllocator>
00070 struct MD5Sum< ::visp_tracker::KltPoints_<ContainerAllocator> > {
00071   static const char* value() 
00072   {
00073     return "681548d0f72044b7f086e3985d86f93c";
00074   }
00075 
00076   static const char* value(const  ::visp_tracker::KltPoints_<ContainerAllocator> &) { return value(); } 
00077   static const uint64_t static_value1 = 0x681548d0f72044b7ULL;
00078   static const uint64_t static_value2 = 0xf086e3985d86f93cULL;
00079 };
00080 
00081 template<class ContainerAllocator>
00082 struct DataType< ::visp_tracker::KltPoints_<ContainerAllocator> > {
00083   static const char* value() 
00084   {
00085     return "visp_tracker/KltPoints";
00086   }
00087 
00088   static const char* value(const  ::visp_tracker::KltPoints_<ContainerAllocator> &) { return value(); } 
00089 };
00090 
00091 template<class ContainerAllocator>
00092 struct Definition< ::visp_tracker::KltPoints_<ContainerAllocator> > {
00093   static const char* value() 
00094   {
00095     return "# Stamped list of KLT points positions.\n\
00096 #\n\
00097 # KLT points positions associated with a particular timestamp.\n\
00098 # Used by the viewer to display KLT points positions and allow\n\
00099 # tracking debug.\n\
00100 \n\
00101 Header header                        # Header (required for synchronization).\n\
00102 KltPoint[] klt_points_positions      # List of KLT points positions.\n\
00103 \n\
00104 ================================================================================\n\
00105 MSG: std_msgs/Header\n\
00106 # Standard metadata for higher-level stamped data types.\n\
00107 # This is generally used to communicate timestamped data \n\
00108 # in a particular coordinate frame.\n\
00109 # \n\
00110 # sequence ID: consecutively increasing ID \n\
00111 uint32 seq\n\
00112 #Two-integer timestamp that is expressed as:\n\
00113 # * stamp.secs: seconds (stamp_secs) since epoch\n\
00114 # * stamp.nsecs: nanoseconds since stamp_secs\n\
00115 # time-handling sugar is provided by the client library\n\
00116 time stamp\n\
00117 #Frame this data is associated with\n\
00118 # 0: no frame\n\
00119 # 1: global frame\n\
00120 string frame_id\n\
00121 \n\
00122 ================================================================================\n\
00123 MSG: visp_tracker/KltPoint\n\
00124 # KLT point position.\n\
00125 \n\
00126 float64 i      # i position in the image\n\
00127 float64 j      # j position in the image\n\
00128 int32   id     # Point id\n\
00129 \n\
00130 ";
00131   }
00132 
00133   static const char* value(const  ::visp_tracker::KltPoints_<ContainerAllocator> &) { return value(); } 
00134 };
00135 
00136 template<class ContainerAllocator> struct HasHeader< ::visp_tracker::KltPoints_<ContainerAllocator> > : public TrueType {};
00137 template<class ContainerAllocator> struct HasHeader< const ::visp_tracker::KltPoints_<ContainerAllocator> > : public TrueType {};
00138 } // namespace message_traits
00139 } // namespace ros
00140 
00141 namespace ros
00142 {
00143 namespace serialization
00144 {
00145 
00146 template<class ContainerAllocator> struct Serializer< ::visp_tracker::KltPoints_<ContainerAllocator> >
00147 {
00148   template<typename Stream, typename T> inline static void allInOne(Stream& stream, T m)
00149   {
00150     stream.next(m.header);
00151     stream.next(m.klt_points_positions);
00152   }
00153 
00154   ROS_DECLARE_ALLINONE_SERIALIZER;
00155 }; // struct KltPoints_
00156 } // namespace serialization
00157 } // namespace ros
00158 
00159 namespace ros
00160 {
00161 namespace message_operations
00162 {
00163 
00164 template<class ContainerAllocator>
00165 struct Printer< ::visp_tracker::KltPoints_<ContainerAllocator> >
00166 {
00167   template<typename Stream> static void stream(Stream& s, const std::string& indent, const  ::visp_tracker::KltPoints_<ContainerAllocator> & v) 
00168   {
00169     s << indent << "header: ";
00170 s << std::endl;
00171     Printer< ::std_msgs::Header_<ContainerAllocator> >::stream(s, indent + "  ", v.header);
00172     s << indent << "klt_points_positions[]" << std::endl;
00173     for (size_t i = 0; i < v.klt_points_positions.size(); ++i)
00174     {
00175       s << indent << "  klt_points_positions[" << i << "]: ";
00176       s << std::endl;
00177       s << indent;
00178       Printer< ::visp_tracker::KltPoint_<ContainerAllocator> >::stream(s, indent + "    ", v.klt_points_positions[i]);
00179     }
00180   }
00181 };
00182 
00183 
00184 } // namespace message_operations
00185 } // namespace ros
00186 
00187 #endif // VISP_TRACKER_MESSAGE_KLTPOINTS_H
00188 


visp_tracker
Author(s): Thomas Moulard/thomas.moulard@gmail.com
autogenerated on Sat Dec 28 2013 17:46:03