7 #include <pcl/PCLHeader.h>
23 std::vector<std::uint8_t>
data;
25 using Ptr = shared_ptr< ::pcl::PCLImage>;
26 using ConstPtr = shared_ptr<const ::pcl::PCLImage>;
32 inline std::ostream&
operator<<(std::ostream& s, const ::pcl::PCLImage & v)
34 s <<
"header: " << std::endl;
37 s <<
" " << v.height << std::endl;
39 s <<
" " << v.width << std::endl;
41 s <<
" " << v.encoding << std::endl;
42 s <<
"is_bigendian: ";
43 s <<
" " << v.is_bigendian << std::endl;
45 s <<
" " << v.step << std::endl;
46 s <<
"data[]" << std::endl;
47 for (std::size_t i = 0; i < v.data.size (); ++i)
49 s <<
" data[" << i <<
"]: ";
50 s <<
" " << v.data[i] << std::endl;
detail::int_type_t< detail::index_type_size, false > uindex_t
Type used for an unsigned index in PCL.
std::ostream & operator<<(std::ostream &os, const BivariatePolynomialT< real > &p)
PCLImage::ConstPtr PCLImageConstPtr
PCLImage::Ptr PCLImagePtr
std::uint8_t is_bigendian
std::vector< std::uint8_t > data
shared_ptr< const ::pcl::PCLImage > ConstPtr
shared_ptr< ::pcl::PCLImage > Ptr
Defines basic non-point types used by PCL.