/usr/include/pcl-1.7/pcl/PCLImage.h is in libpcl-dev 1.7.2-14build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 | #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
|