Program Listing for File PCLImage.h¶
↰ Return to documentation for file (pcl\common\include\pcl\PCLImage.h)
#ifndef PCL_MESSAGE_IMAGE_H
#define PCL_MESSAGE_IMAGE_H
#include <string>
#include <vector>
#include <ostream>
#ifdef USE_ROS
#error USE_ROS setup requires PCL to compile against ROS message headers, which is now deprecated
#endif
// Include the correct Header path here
#include <pcl/PCLHeader.h>
namespace pcl
{
struct PCLImage
{
PCLImage () : header (), height (0), width (0), encoding (),
is_bigendian (0), step (0), data ()
{}
::pcl::PCLHeader header;
pcl::uint32_t height;
pcl::uint32_t width;
std::string encoding;
pcl::uint8_t is_bigendian;
pcl::uint32_t step;
std::vector<pcl::uint8_t> data;
typedef boost::shared_ptr< ::pcl::PCLImage> Ptr;
typedef boost::shared_ptr< ::pcl::PCLImage const> ConstPtr;
}; // struct PCLImage
typedef boost::shared_ptr< ::pcl::PCLImage> PCLImagePtr;
typedef boost::shared_ptr< ::pcl::PCLImage const> PCLImageConstPtr;
inline std::ostream& operator<<(std::ostream& s, const ::pcl::PCLImage & v)
{
s << "header: " << std::endl;
s << v.header;
s << "height: ";
s << " " << v.height << std::endl;
s << "width: ";
s << " " << v.width << std::endl;
s << "encoding: ";
s << " " << v.encoding << std::endl;
s << "is_bigendian: ";
s << " " << v.is_bigendian << std::endl;
s << "step: ";
s << " " << v.step << std::endl;
s << "data[]" << std::endl;
for (size_t i = 0; i < v.data.size (); ++i)
{
s << " data[" << i << "]: ";
s << " " << v.data[i] << std::endl;
}
return (s);
}
} // namespace pcl
#endif // PCL_MESSAGE_IMAGE_H